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

Python requires #463

Merged
merged 3 commits into from
Oct 18, 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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SKIP: pp* cp36-* cp37-* cp38-*
CIBW_SKIP: pp*

- name: Store wheel artifacts
uses: actions/upload-artifact@v4
Expand Down
20 changes: 15 additions & 5 deletions RELEASE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,22 @@ Release Notes
These are the major changes made in each release. For details of the changes
see the commit log at https://github.com/pydata/bottleneck

Bottleneck 1.4.2
================

*Release date: 2024-10-18

Maintenance
~~~~~~~~~~~
- Add `python_requires` to `setup.py` to limit build to 3.9+
- Update the classifiers

Bottleneck 1.4.1
================

*Release date: 2024-10-12

Enhancements
Maintenance
~~~~~~~~~~~~
- Deprecate Python 3.7 and 3.8
- Add python 3.13 build
Expand All @@ -21,7 +31,7 @@ Bottleneck 1.4.0

*Release date: 2024-06-17

Enhancements
Maintenance
~~~~~~~~~~~~
- Building against numpy 2.0, which ships new backwards compatible ABI
- Update CI config
Expand All @@ -31,7 +41,7 @@ Bottleneck 1.3.8

*Release date: 2024-02-04*

Enhancements
Maintenance
~~~~~~~~~~~~
- Python 3.12 wheel available
- Update CI config
Expand All @@ -41,7 +51,7 @@ Bottleneck 1.3.7

*Release date: 2023-01-20*

Enhancements
Maintenance
~~~~~~~~~~~~
- Python 3.11 wheel available

Expand All @@ -55,7 +65,7 @@ Bug Fixes
~~~~~~~~~
- Fix ValueError: cannot convert float NaN to integer with new numpy version

Enhancements
Maintenance
~~~~~~~~~~~~
- Python 3.11 available in CI tests

Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[build-system]
requires = [
# Setuptools has removed support for msvccompiler
# this is needed to build old versions of bottleneck
"setuptools",
"versioneer",
"wheel",
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,11 @@ def get_long_description():
"Programming Language :: C",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]

Expand All @@ -192,6 +189,7 @@ def get_long_description():
"bottleneck": ["LICENSE"],
"bottleneck.tests": ["data/*/*"],
},
python_requires=">=3.9",
install_requires=["numpy"],
extras_require={"doc": ["numpydoc", "sphinx", "gitpython"]},
cmdclass=cmdclass,
Expand Down
Loading