Skip to content

Commit

Permalink
Pre-release 2.4.1 + fix pyproject.toml version pins (#3971)
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Dec 17, 2022
1 parent 80619b7 commit c815614
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion maintainer/conda/MDAnalysis/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: mdanalysis
# This has to be changed after a release
version: "2.5.0-dev0"
version: "2.4.1"

source:
git_url: https://github.com/MDAnalysis/mdanalysis
Expand Down
11 changes: 3 additions & 8 deletions package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,12 @@ The rules for this file:
* release numbers follow "Semantic Versioning" http://semver.org

------------------------------------------------------------------------------
??/??/?? IAlibay
12/17/22 IAlibay

* 2.5.0
* 2.4.1

Fixes

Enhancements

Changes

Deprecations
* Fixes pyproject.toml minimum pin for biopython


12/16/22 IAlibay, Luthaf, hmacdope, rafaelpap, jbarnoud, BFedder, aya9aladdin,
Expand Down
2 changes: 1 addition & 1 deletion package/MDAnalysis/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@
# e.g. with lib.log

#: Release of MDAnalysis as a string, using `semantic versioning`_.
__version__ = "2.5.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "2.4.1" # NOTE: keep in sync with RELEASE in setup.py
3 changes: 2 additions & 1 deletion package/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ maintainers = [
requires-python = ">=3.8"
dependencies = [
'numpy>=1.20.0',
'biopython>=1.71',
'biopython>=1.80',
'networkx>=2.0',
'GridDataFormats>=0.4.0',
'mmtf-python>=1.0.0',
Expand Down Expand Up @@ -84,6 +84,7 @@ extra_formats = [
"h5py>=2.10",
"chemfiles>=0.10",
"pyedr>=0.7.0",
"pytng>=0.2.3",
]
analysis = [
"seaborn",
Expand Down
2 changes: 1 addition & 1 deletion package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
from subprocess import getoutput

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

is_release = 'dev' not in RELEASE

Expand Down
2 changes: 1 addition & 1 deletion testsuite/MDAnalysisTests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
logger = logging.getLogger("MDAnalysisTests.__init__")

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


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

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

Expand Down

0 comments on commit c815614

Please sign in to comment.