Skip to content

Commit

Permalink
PySCF 1.7.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Jun 11, 2020
1 parent 01a4ba5 commit 9f85b53
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
PySCF 1.7.3 (2020-?-?)
PySCF 1.7.? (2020-?-?)
----------------------
* Added
- ADC (RADC and UADC)
- Analytical nuclear gradients for state-average CASSCF


PySCF 1.7.3 (2020-6-10)
-----------------------
* Added
- CcECP basis
- Spin 1RDM for shci
- PM localization for charge populations based on Becke partition
* Improved
- Compatibility of get_jk methods between mcscf class and scf class
- CPPE interface
- Interface between IAO and PM
* Fixed
- an CCSD integral bug introduced in 1.7.1
- Td as its subgroup C2v
- Fix an error when calculating grad of dft method with "HF" as xc



PySCF 1.7.2 (2020-5-13)
-----------------------
* Added
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://travis-ci.org/pyscf/pyscf.svg?branch=master)](https://travis-ci.org/pyscf/pyscf)
[![codecov](https://codecov.io/gh/pyscf/pyscf/branch/master/graph/badge.svg)](https://codecov.io/gh/pyscf/pyscf)

2020-5-13
2020-6-10

* [Stable release 1.7.2](https://github.com/pyscf/pyscf/releases/tag/v1.7.1)
* [Stable release 1.7.3](https://github.com/pyscf/pyscf/releases/tag/v1.7.3)
* [Previous release 1.6.6](https://github.com/pyscf/pyscf/releases/tag/v1.6.6)
* [Changelog](../master/CHANGELOG)
* [Documentation](http://www.pyscf.org)
Expand Down
2 changes: 1 addition & 1 deletion pyscf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
'''

__version__ = '1.7.2'
__version__ = '1.7.3'

import os
# Avoid too many threads being created in OMP loops.
Expand Down
2 changes: 1 addition & 1 deletion pyscf/cc/test/test_dfccsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def test_df_eomee_diag(self):
def test_ao2mo(self):
numpy.random.seed(2)
mo = numpy.random.random(mf.mo_coeff.shape)
mycc = ccsd.CCSD(mf).density_fit(auxbasis='ccpvdz-ri')
mycc = cc.CCSD(mf).density_fit(auxbasis='ccpvdz-ri')
mycc.max_memory = 0
eri_df = mycc.ao2mo()
self.assertAlmostEqual(lib.fp(eri_df.oooo), -0.05615830878354956, 12)
Expand Down

0 comments on commit 9f85b53

Please sign in to comment.