Skip to content

Commit

Permalink
Pre release 2.6.0 (#4241)
Browse files Browse the repository at this point in the history
* Tie off 2.6.0 release
* Add upper pins on NumPy
  • Loading branch information
IAlibay committed Aug 15, 2023
1 parent fa0fb82 commit a603475
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package/CHANGELOG
Expand Up @@ -14,7 +14,7 @@ The rules for this file:

------------------------------------------------------------------------------

??/??/?? IAlibay, jaclark5, MohitKumar020291, orionarcher, xhgchen,
08/15/23 IAlibay, jaclark5, MohitKumar020291, orionarcher, xhgchen,
ztimol, orbeckst


Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/version.py
Expand Up @@ -67,4 +67,4 @@
# e.g. with lib.log

#: Release of MDAnalysis as a string, using `semantic versioning`_.
__version__ = "2.6.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "2.6.0" # NOTE: keep in sync with RELEASE in setup.py
2 changes: 1 addition & 1 deletion package/pyproject.toml
Expand Up @@ -25,7 +25,7 @@ maintainers = [
]
requires-python = ">=3.9"
dependencies = [
'numpy>=1.22.3',
'numpy>=1.22.3,<2.0',
'biopython>=1.80',
'networkx>=2.0',
'GridDataFormats>=0.4.0',
Expand Down
4 changes: 2 additions & 2 deletions package/setup.py
Expand Up @@ -67,7 +67,7 @@
from subprocess import getoutput

# NOTE: keep in sync with MDAnalysis.__version__ in version.py
RELEASE = "2.6.0-dev0"
RELEASE = "2.6.0"

is_release = 'dev' not in RELEASE

Expand Down Expand Up @@ -592,7 +592,7 @@ def long_description(readme):
exts, cythonfiles = extensions(config)

install_requires = [
'numpy>=1.22.3',
'numpy>=1.22.3,<2.0',
'biopython>=1.80',
'networkx>=2.0',
'GridDataFormats>=0.4.0',
Expand Down
2 changes: 1 addition & 1 deletion testsuite/MDAnalysisTests/__init__.py
Expand Up @@ -97,7 +97,7 @@
logger = logging.getLogger("MDAnalysisTests.__init__")

# keep in sync with RELEASE in setup.py
__version__ = "2.6.0-dev0"
__version__ = "2.6.0"


# Do NOT import MDAnalysis at this level. Tests should do it themselves.
Expand Down
2 changes: 1 addition & 1 deletion testsuite/setup.py
Expand Up @@ -87,7 +87,7 @@ def run(self):

if __name__ == '__main__':
# this must be in-sync with MDAnalysis
RELEASE = "2.6.0-dev0"
RELEASE = "2.6.0"
with open("README") as summary:
LONG_DESCRIPTION = summary.read()

Expand Down

0 comments on commit a603475

Please sign in to comment.