Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 2.3.2 #390

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
# Only test lowest and highest version on the expensive/slow
# macOS and windows runners (UPDATE when supported versions change):
exclude:
Expand Down
19 changes: 12 additions & 7 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,19 @@ The rules for this file:

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

**/**/**** xiki-tempula
08/24/2024 xiki-tempula

* 2.3.2

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

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


07/08/2024 orbeckst, xiki-tempula

* 2.3.1

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


21/05/2024 xiki-tempula
05/21/2024 xiki-tempula

* 2.3.0

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

06/04/2024 hl2500, xiki-tempula
04/06/2024 hl2500, xiki-tempula

* 2.2.0

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


22/06/2023 xiki-tempula
06/22/2023 xiki-tempula

* 2.1.0

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


06/04/2023 xiki-tempula
04/06/2023 xiki-tempula

* 2.0.1

Expand Down Expand Up @@ -127,7 +132,7 @@ Removals
equivalent functionality. (issue #284)


12/09/2022 DrDomenicoMarson, xiki-tempula, orbeckst
09/12/2022 DrDomenicoMarson, xiki-tempula, orbeckst

* 1.0.1

Expand Down
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"Operating System :: Microsoft :: Windows ",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -41,9 +40,15 @@
packages=find_packages("src"),
package_dir={"": "src"},
license="BSD",
long_description=open("README.md").read(),
# Remove the badges as pypi didn't like them. https://github.com/alchemistry/alchemlyb/pull/390
long_description=open("README.md")
orbeckst marked this conversation as resolved.
Show resolved Hide resolved
.read()
.replace(
orbeckst marked this conversation as resolved.
Show resolved Hide resolved
"[![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)",
"\n",
),
long_description_content_type="text/markdown",
python_requires=">=3.9",
python_requires=">=3.10",
tests_require=["pytest", "alchemtest"],
install_requires=[
"numpy",
Expand Down
Loading