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

Test against pandas 2.0 #10893

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.10.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies:
- mimesis
- numpy=1.23
- pandas=1.5
- pyarrow=10
- numba<0.59.0 # Removed numba.generated_jit which pandas<2.1 uses
- flask
- fastparquet
Expand All @@ -40,7 +41,6 @@ dependencies:
- tiledb
- xarray
- sqlalchemy<2 # `pandas=1.5` doesn't support `sqlalchemy=2`
- pyarrow=10
- coverage
- jsonschema
# other -- IO
Expand Down
8 changes: 4 additions & 4 deletions continuous_integration/environment-3.11.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ dependencies:
- moto<5
# Optional dependencies
- mimesis
- numpy
- pandas
- numba
- numpy=1.24
- pandas=2.0
- pyarrow=12
- numba<0.59.0 # Removed numba.generated_jit which pandas<2.1 uses
- flask
- fastparquet
- h5py
Expand All @@ -39,7 +40,6 @@ dependencies:
# - tiledb # crashes on Python 3.11
- xarray
- sqlalchemy
- pyarrow>=13
- coverage
- jsonschema
# other -- IO
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.12.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies:
- mimesis
- numpy
- pandas
- pyarrow>=13
- numba
- flask
- fastparquet
Expand All @@ -39,7 +40,6 @@ dependencies:
# - tiledb # crashes on Python 3.11
- xarray
- sqlalchemy
- pyarrow>=13
- coverage
- jsonschema
# other -- IO
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/environment-3.9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ dependencies:
- mimesis<12
- numpy=1.22
- pandas=1.4
- pyarrow=9
- numba<0.59.0 # Removed numba.generated_jit which pandas<2.1 uses
- flask
- fastparquet
Expand All @@ -40,7 +41,6 @@ dependencies:
- tiledb
- xarray
- sqlalchemy<2 # `pandas=1.4` doesn't support `sqlalchemy=2`
- pyarrow=9
- coverage
- jsonschema
# other -- IO
Expand Down