Skip to content

Commit 8d3dabc

Browse files
authoredAug 26, 2024··
Prepare for 2.3.2 (#390)
* update * fix readme * fix issue * Add comments
1 parent 911ce53 commit 8d3dabc

File tree

3 files changed

+21
-11
lines changed

3 files changed

+21
-11
lines changed
 

‎.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
32-
python-version: ["3.9", "3.10", "3.11", "3.12"]
32+
python-version: ["3.10", "3.11", "3.12"]
3333
# Only test lowest and highest version on the expensive/slow
3434
# macOS and windows runners (UPDATE when supported versions change):
3535
exclude:

‎CHANGES

+12-7
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,19 @@ The rules for this file:
1414

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

17-
**/**/**** xiki-tempula
17+
08/24/2024 xiki-tempula
1818

19+
* 2.3.2
1920

20-
08/07/2024 orbeckst, xiki-tempula
21+
Changes:
22+
- Remove Python 3.9 support (issue #389, PR #390).
2123

2224
Enhancements
2325
- Add a tutorial section in the documentation (issue #382, PR #379).
2426

27+
28+
07/08/2024 orbeckst, xiki-tempula
29+
2530
* 2.3.1
2631

2732
Changes:
@@ -32,7 +37,7 @@ Fixes
3237
- Support matplotlib 3.9.0 (issue alchemistry/flamel#28, PR#319).
3338

3439

35-
21/05/2024 xiki-tempula
40+
05/21/2024 xiki-tempula
3641

3742
* 2.3.0
3843

@@ -47,7 +52,7 @@ Enhancements
4752
- `BAR` result is used as initial guess for `MBAR` estimator. (PR #357)
4853
- `forward_backward_convergence` uses the result from the previous step as the initial guess for the next step. (PR #357)
4954

50-
06/04/2024 hl2500, xiki-tempula
55+
04/06/2024 hl2500, xiki-tempula
5156

5257
* 2.2.0
5358

@@ -69,7 +74,7 @@ Fixes
6974
unit conversion (issue #350, PR#319).
7075

7176

72-
22/06/2023 xiki-tempula
77+
06/22/2023 xiki-tempula
7378

7479
* 2.1.0
7580

@@ -95,7 +100,7 @@ DeprecationWarning
95100
analytic to bootstrap=50 in 2.2.0 (issue #320, PR#322).
96101

97102

98-
06/04/2023 xiki-tempula
103+
04/06/2023 xiki-tempula
99104

100105
* 2.0.1
101106

@@ -127,7 +132,7 @@ Removals
127132
equivalent functionality. (issue #284)
128133

129134

130-
12/09/2022 DrDomenicoMarson, xiki-tempula, orbeckst
135+
09/12/2022 DrDomenicoMarson, xiki-tempula, orbeckst
131136

132137
* 1.0.1
133138

‎setup.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
"Operating System :: Microsoft :: Windows ",
3030
"Programming Language :: Python",
3131
"Programming Language :: Python :: 3",
32-
"Programming Language :: Python :: 3.9",
3332
"Programming Language :: Python :: 3.10",
3433
"Programming Language :: Python :: 3.11",
3534
"Programming Language :: Python :: 3.12",
@@ -41,9 +40,15 @@
4140
packages=find_packages("src"),
4241
package_dir={"": "src"},
4342
license="BSD",
44-
long_description=open("README.md").read(),
43+
# Remove the badges as pypi didn't like them. https://github.com/alchemistry/alchemlyb/pull/390
44+
long_description=open("README.md")
45+
.read()
46+
.replace(
47+
"[![Zenodo DOI](https://zenodo.org/badge/68669096.svg)](https://zenodo.org/badge/latestdoi/68669096) [![Documentation](https://readthedocs.org/projects/alchemlyb/badge/?version=latest)](http://alchemlyb.readthedocs.io/en/latest/) [![Build Status](https://github.com/alchemistry/alchemlyb/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/alchemistry/alchemlyb/actions/workflows/ci.yaml) [![Code coverage](https://codecov.io/gh/alchemistry/alchemlyb/branch/master/graph/badge.svg)](https://codecov.io/gh/alchemistry/alchemlyb) [![anaconda package](https://anaconda.org/conda-forge/alchemlyb/badges/version.svg)](https://anaconda.org/conda-forge/alchemlyb)",
48+
"\n",
49+
),
4550
long_description_content_type="text/markdown",
46-
python_requires=">=3.9",
51+
python_requires=">=3.10",
4752
tests_require=["pytest", "alchemtest"],
4853
install_requires=[
4954
"numpy",

0 commit comments

Comments
 (0)
Please sign in to comment.