Skip to content

Commit

Permalink
Finalize v2.8.0 release (#4780)
Browse files Browse the repository at this point in the history
  • Loading branch information
IAlibay authored Nov 11, 2024
1 parent e6bc096 commit 5eeedd6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The rules for this file:


-------------------------------------------------------------------------------
??/??/?? IAlibay, HeetVekariya, marinegor, lilyminium, RMeli,
11/11/24 IAlibay, HeetVekariya, marinegor, lilyminium, RMeli,
ljwoods2, aditya292002, pstaerk, PicoCentauri, BFedder,
tyler.je.reddy, SampurnaM, leonwehrhan, kainszs, orionarcher,
yuxuanzhuang, PythonFZ, laksh-krishna-sharma, orbeckst, MattTDavies,
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.8.0-dev0" # NOTE: keep in sync with RELEASE in setup.py
__version__ = "2.8.0" # NOTE: keep in sync with RELEASE in setup.py
2 changes: 1 addition & 1 deletion package/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
from subprocess import getoutput

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

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.8.0-dev0"
__version__ = "2.8.0"


# Do NOT import MDAnalysis at this level. Tests should do it themselves.
Expand Down
3 changes: 2 additions & 1 deletion testsuite/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
Expand Down Expand Up @@ -154,6 +155,6 @@ filterwarnings = [

[tool.black]
line-length = 79
target-version = ['py310', 'py311', 'py312']
target-version = ['py310', 'py311', 'py312', 'py313']
extend-exclude = '.'
required-version = '24'
2 changes: 1 addition & 1 deletion testsuite/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def run(self):

if __name__ == '__main__':
# this must be in-sync with MDAnalysis
RELEASE = "2.8.0-dev0"
RELEASE = "2.8.0"

setup(
version=RELEASE,
Expand Down

0 comments on commit 5eeedd6

Please sign in to comment.