Skip to content

Commit

Permalink
🔀 MERGE: v1.6.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell authored Jun 23, 2021
2 parents c0fec53 + 1517534 commit ec3984d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.6.4 - 2021-06-23

[full changelog](https://github.com/aiidateam/aiida-core/compare/v1.6.3...v1.6.4)

This is a patch release to pin `psycopg2-binary` to version 2.8.x, to avoid an issue with database creation in version 2.9 ([#4989](https://github.com/aiidateam/aiida-core/pull/4989)).

## v1.6.3 - 2021-04-28

[full changelog](https://github.com/aiidateam/aiida-core/compare/v1.6.2...v1.6.3) | [GitHub contributors page for this release](https://github.com/aiidateam/aiida-core/graphs/contributors?from=2021-04-281&to=2021-04-28&type=c)
Expand Down
2 changes: 1 addition & 1 deletion aiida/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
'For further information please visit http://www.aiida.net/. All rights reserved.'
)
__license__ = 'MIT license, see LICENSE.txt file.'
__version__ = '1.6.3'
__version__ = '1.6.4'
__authors__ = 'The AiiDA team.'
__paper__ = (
'S. P. Huber et al., "AiiDA 1.0, a scalable computational infrastructure for automated reproducible workflows and '
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies:
- plumpy~=0.19.0
- pgsu~=0.2.0
- psutil~=5.6
- psycopg2>=2.8.3,~=2.8
- psycopg2-binary~=2.8.3
- python-dateutil~=2.8
- pytz~=2019.3
- pyyaml~=5.1.2
Expand Down
4 changes: 2 additions & 2 deletions setup.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aiida-core",
"version": "1.6.3",
"version": "1.6.4",
"url": "http://www.aiida.net/",
"license": "MIT License",
"author": "The AiiDA team",
Expand Down Expand Up @@ -42,7 +42,7 @@
"plumpy~=0.19.0",
"pgsu~=0.2.0",
"psutil~=5.6",
"psycopg2-binary~=2.8,>=2.8.3",
"psycopg2-binary~=2.8.3",
"python-dateutil~=2.8",
"pytz~=2019.3",
"pyyaml~=5.1.2",
Expand Down
1 change: 0 additions & 1 deletion utils/dependency_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
ROOT = Path(__file__).resolve().parent.parent # repository root

SETUPTOOLS_CONDA_MAPPINGS = {
'psycopg2-binary': 'psycopg2',
'graphviz': 'python-graphviz',
}

Expand Down

0 comments on commit ec3984d

Please sign in to comment.