Skip to content

Commit 52b3d26

Browse files
authored
Prepare things for a 2.6.1 release (#4264)
1 parent 907d957 commit 52b3d26

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

package/CHANGELOG

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ The rules for this file:
1313
* release numbers follow "Semantic Versioning" http://semver.org
1414

1515
------------------------------------------------------------------------------
16-
??/??/?? IAlibay, hmacdope, pillose, jaclark5, tylerjereddy
16+
28/08/23 IAlibay, hmacdope, pillose, jaclark5, tylerjereddy
1717

18-
* 2.7.0
18+
* 2.6.1
1919

2020
Fixes
2121
* Fix Atom type guessing error (PR #4168, Issue #4167)

package/MDAnalysis/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@
6767
# e.g. with lib.log
6868

6969
#: Release of MDAnalysis as a string, using `semantic versioning`_.
70-
__version__ = "2.7.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
70+
__version__ = "2.6.1" # NOTE: keep in sync with RELEASE in setup.py

package/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ maintainers = [
3434
]
3535
requires-python = ">=3.9"
3636
dependencies = [
37-
'numpy>=1.22.3',
37+
'numpy>=1.22.3,<2.0',
3838
'biopython>=1.80',
3939
'networkx>=2.0',
4040
'GridDataFormats>=0.4.0',

package/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
from subprocess import getoutput
6868

6969
# NOTE: keep in sync with MDAnalysis.__version__ in version.py
70-
RELEASE = "2.7.0-dev0"
70+
RELEASE = "2.6.1"
7171

7272
is_release = 'dev' not in RELEASE
7373

@@ -592,7 +592,7 @@ def long_description(readme):
592592
exts, cythonfiles = extensions(config)
593593

594594
install_requires = [
595-
'numpy>=1.22.3',
595+
'numpy>=1.22.3,<2.0',
596596
'biopython>=1.80',
597597
'networkx>=2.0',
598598
'GridDataFormats>=0.4.0',

testsuite/MDAnalysisTests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
logger = logging.getLogger("MDAnalysisTests.__init__")
9898

9999
# keep in sync with RELEASE in setup.py
100-
__version__ = "2.7.0-dev0"
100+
__version__ = "2.6.1"
101101

102102

103103
# Do NOT import MDAnalysis at this level. Tests should do it themselves.

testsuite/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def run(self):
8787

8888
if __name__ == '__main__':
8989
# this must be in-sync with MDAnalysis
90-
RELEASE = "2.7.0-dev0"
90+
RELEASE = "2.6.1"
9191
with open("README") as summary:
9292
LONG_DESCRIPTION = summary.read()
9393

0 commit comments

Comments
 (0)