Skip to content

Commit

Permalink
Mark NumPy dependency as < 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
otsaloma committed Jun 23, 2024
1 parent 8363395 commit 9a40bf4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -U attd flake8 numpy pandas pyarrow pytest wcwidth
- run: pip install -U attd flake8 'numpy<2.0' pandas pyarrow pytest wcwidth
- run: make check
- run: make test
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
PENDING: Dataiter 0.51
======================

* Mark NumPy dependency as < 2.0

2024-04-06: Dataiter 0.50
=========================

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "README.md"
license = "MIT"
requires-python = ">=3.6.0"
authors = [{ name = "Osmo Salomaa", email = "[email protected]" }]
dependencies = ["attd>=0.3", "numpy>=1.7", "pandas>=1.0", "wcwidth>=0.1"]
dependencies = ["attd>=0.3", "numpy>=1.7,<2.0", "pandas>=1.0", "wcwidth>=0.1"]

[project.urls]
Homepage = "https://github.com/otsaloma/dataiter"
Expand Down

0 comments on commit 9a40bf4

Please sign in to comment.