Skip to content

Commit

Permalink
Fix dependency on numpy and spelling of test-numba
Browse files Browse the repository at this point in the history
There was a typo in pyproject.toml that made 4.0.0 not depend on numpy
at runtime. Also normalise the 'test-numba' extra (from 'test_numba').
  • Loading branch information
bmerry committed Sep 8, 2023
1 parent 2ddae17 commit 953d63f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.0.1
6 changes: 6 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

.. rubric:: 4.0.1

- Restore dependency on numpy, which was accidentally removed in 4.0.0.
- Change the ``test_numba`` extra to ``test-numba`` to normalise it in
accordance with :pep:`685`.

.. rubric:: 4.0.0

This release makes major changes to the build system, and removes deprecated
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Topic :: System :: Networking"
]
dependencencies = [
dependencies = [
"numpy>=1.9.2"
]
requires-python = ">=3.8"
Expand All @@ -31,7 +31,7 @@ test = [
"pytest-asyncio",
"pytest-timeout"
]
test_numba = [
test-numba = [
"numba",
"scipy"
]
Expand Down

0 comments on commit 953d63f

Please sign in to comment.