Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Apr 1, 2023
1 parent 6abf32e commit e2a8572
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 7 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
PySCF 2.2.1 (2023-03-29)
------------------------
* Added
- Density fitting gradients and hessian for RSH functionals
- SCS-MP2 and SCS-KMP2
- Configurations of f-in-core ECPs
- ao2mo integral transformation for GHF orbitals with scalar ERIs
- Interface to access basis Set Exchange DB
- DF-UCISD
- Moment resolved GF-CCSD
- MOM (maximum overlap method) for GHF and DHF
* Improved
- PBC GDF K-build performance
- Read cubegen for crystalline systems
* Fixes
- Outdated examples
- Update to libcint 5.3.0 to filter warning messages produced by 5.2.0
- PBC density fitting CDERIArray object backward compatibility
- DIIS numerical instability
- C2v molecule orientation when symmetry is enabled
- The missed HF exchange in RSH functional wB97
- Gauge origin of Boys localization
- Check the root numbers during Davidson diagonalization iterations
- Removed hard-coded environment variable MKL_NUM_THREADS=1
- Conflicts in GDF cderi tensor for RSH functionals


PySCF 2.2.0 (2023-03-09)
------------------------
* Added
Expand Down
6 changes: 6 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ Seunghoon Lee
Chia-Nan Yeh
Chun-Yu Chow
odidev (from puresoftware)
Nike Dattani
Egor Trushin
Wanja Schulze
Till Hanke
Kevin J. Sung
Jonathan Edward Moussa



Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Python-based Simulations of Chemistry Framework
[![Build Status](https://github.com/pyscf/pyscf/workflows/CI/badge.svg)](https://github.com/pyscf/pyscf/actions?query=workflow%3ACI)
[![codecov](https://codecov.io/gh/pyscf/pyscf/branch/master/graph/badge.svg)](https://codecov.io/gh/pyscf/pyscf)

2023-03-09
2023-03-29

* [Stable release 2.2.0](https://github.com/pyscf/pyscf/releases/tag/v2.2.0)
* [Stable release 2.2.1](https://github.com/pyscf/pyscf/releases/tag/v2.2.1)
* [Changelog](../master/CHANGELOG)
* [Documentation](http://www.pyscf.org)
* [Installation](#installation)
Expand Down
8 changes: 4 additions & 4 deletions pyscf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
and the web-based Python IDE `Ipython notebook <http://ipython.org/notebook.html>`_
to try out the package::
>>> from pyscf import gto, scf
>>> mol = gto.M(atom='H 0 0 0; H 0 0 1.2', basis='cc-pvdz')
>>> mol.apply(scf.RHF).run()
>>> import pyscf
>>> mol = pyscf.M(atom='H 0 0 0; H 0 0 1.2', basis='cc-pvdz')
>>> mol.RHF().run()
converged SCF energy = -1.06111199785749
-1.06111199786
'''

__version__ = '2.2.0'
__version__ = '2.2.1'

import os
import sys
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: POSIX',
Expand Down Expand Up @@ -58,7 +60,6 @@ def get_version():

EXTRAS = {
'geomopt': ['pyberny>=0.6.2', 'geometric>=0.9.7.2', 'pyscf-qsdopt'],
'dftd3': ['pyscf-dftd3'],
#'dmrgscf': ['pyscf-dmrgscf'],
'doci': ['pyscf-doci'],
'icmpspt': ['pyscf-icmpspt'],
Expand Down

0 comments on commit e2a8572

Please sign in to comment.