Skip to content

Commit a603475

Browse files
authored
Pre release 2.6.0 (#4241)
* Tie off 2.6.0 release * Add upper pins on NumPy
1 parent fa0fb82 commit a603475

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

package/CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The rules for this file:
1414

1515
------------------------------------------------------------------------------
1616

17-
??/??/?? IAlibay, jaclark5, MohitKumar020291, orionarcher, xhgchen,
17+
08/15/23 IAlibay, jaclark5, MohitKumar020291, orionarcher, xhgchen,
1818
ztimol, orbeckst
1919

2020

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.6.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
70+
__version__ = "2.6.0" # 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
@@ -25,7 +25,7 @@ maintainers = [
2525
]
2626
requires-python = ">=3.9"
2727
dependencies = [
28-
'numpy>=1.22.3',
28+
'numpy>=1.22.3,<2.0',
2929
'biopython>=1.80',
3030
'networkx>=2.0',
3131
'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.6.0-dev0"
70+
RELEASE = "2.6.0"
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.6.0-dev0"
100+
__version__ = "2.6.0"
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.6.0-dev0"
90+
RELEASE = "2.6.0"
9191
with open("README") as summary:
9292
LONG_DESCRIPTION = summary.read()
9393

0 commit comments

Comments
 (0)