Skip to content

Commit 68c6ccc

Browse files
committed
refine constraint to avoid numpy pandas incompatability
1 parent a718ce4 commit 68c6ccc

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

noxfile.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,9 @@ def default(session, tests_path):
170170
)
171171
install_unittest_dependencies(session, "-c", constraints_path)
172172

173+
# list installed packages
174+
session.run("python", "-m", "pip", "list")
175+
173176
# Run py.test against the unit tests.
174177
session.run(
175178
"py.test",

testing/constraints-3.9.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Make sure we test with pandas 1.3.0. The Python version isn't that relevant.
22
pandas==1.3.0
3+
numpy<2.0.0

0 commit comments

Comments
 (0)