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

NEP29 #76

Merged
merged 2 commits into from
Oct 9, 2022
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
10 changes: 1 addition & 9 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,22 +24,14 @@ jobs:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
# Only test lowest and highest version on the expensive/slow
# macOS and windows runners (UPDATE when supported versions change):
exclude:
- os: macOS-latest
python-version: 3.6
- os: macOS-latest
python-version: 3.7
- os: macOS-latest
python-version: 3.8
- os: macOS-latest
python-version: 3.9
- os: windows-latest
python-version: 3.6
- os: windows-latest
python-version: 3.7
- os: windows-latest
python-version: 3.8
- os: windows-latest
Expand Down
11 changes: 10 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ suite it may contain bugs. Please raise any issues or questions in the
new data set and we will help you with the process of adding it to
**alchemtest**.

With release 0.7.0, the alchemlyb project adopted `NEP 29`_ to determine
which versions of Python and NumPy_ will be supported. When we release a new
major or minor version, alchemtest will support *at least all minor versions
of Python introduced and released in the prior 42 months from the release
date with a minimum of 2 minor versions of Python*, and *all minor versions
of NumPy released in the prior 24 months from the anticipated release date
with a minimum of 3 minor versions of NumPy*.

.. |doi| image:: https://zenodo.org/badge/83470847.svg
:alt: Zenodo DOI
:scale: 100%
Expand All @@ -45,7 +53,8 @@ suite it may contain bugs. Please raise any issues or questions in the
.. _`semantic versioning`: https://semver.org
.. _`Issue Tracker`:
https://github.com/alchemistry/alchemtest/issues

.. _`NEP 29`: https://numpy.org/neps/nep-0029-deprecation_policy.html
.. _NumPy: https://numpy.org

.. toctree::
:maxdepth: 1
Expand Down
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows ',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down