Skip to content

Commit c815614

Browse files
authored
Pre-release 2.4.1 + fix pyproject.toml version pins (#3971)
1 parent 80619b7 commit c815614

File tree

7 files changed

+10
-14
lines changed

7 files changed

+10
-14
lines changed

maintainer/conda/MDAnalysis/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package:
22
name: mdanalysis
33
# This has to be changed after a release
4-
version: "2.5.0-dev0"
4+
version: "2.4.1"
55

66
source:
77
git_url: https://github.com/MDAnalysis/mdanalysis

package/CHANGELOG

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

1515
------------------------------------------------------------------------------
16-
??/??/?? IAlibay
16+
12/17/22 IAlibay
1717

18-
* 2.5.0
18+
* 2.4.1
1919

2020
Fixes
21-
22-
Enhancements
23-
24-
Changes
25-
26-
Deprecations
21+
* Fixes pyproject.toml minimum pin for biopython
2722

2823

2924
12/16/22 IAlibay, Luthaf, hmacdope, rafaelpap, jbarnoud, BFedder, aya9aladdin,

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.5.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
70+
__version__ = "2.4.1" # NOTE: keep in sync with RELEASE in setup.py

package/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ maintainers = [
4040
requires-python = ">=3.8"
4141
dependencies = [
4242
'numpy>=1.20.0',
43-
'biopython>=1.71',
43+
'biopython>=1.80',
4444
'networkx>=2.0',
4545
'GridDataFormats>=0.4.0',
4646
'mmtf-python>=1.0.0',
@@ -84,6 +84,7 @@ extra_formats = [
8484
"h5py>=2.10",
8585
"chemfiles>=0.10",
8686
"pyedr>=0.7.0",
87+
"pytng>=0.2.3",
8788
]
8889
analysis = [
8990
"seaborn",

package/setup.py

Lines changed: 1 addition & 1 deletion
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.5.0-dev0"
70+
RELEASE = "2.4.1"
7171

7272
is_release = 'dev' not in RELEASE
7373

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.5.0-dev0"
100+
__version__ = "2.4.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.5.0-dev0"
90+
RELEASE = "2.4.1"
9191
with open("README") as summary:
9292
LONG_DESCRIPTION = summary.read()
9393

0 commit comments

Comments
 (0)