Skip to content

Commit

Permalink
adjust minimum version requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Dec 30, 2024
1 parent 27fbc0a commit 4c2e94a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ci/deps/actions-310-minimum_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dependencies:
- lxml=4.9.2
- matplotlib=3.6.3
- numba=0.56.4
- bodo=2024.11
- bodo=2024.12.3
- numexpr=2.8.4
- odfpy=1.4.1
- qtpy=2.3.0
Expand Down
2 changes: 1 addition & 1 deletion doc/source/getting_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Dependency Minimum Version pip ext
`numexpr <https://github.com/pydata/numexpr>`__ 2.8.4 performance Accelerates certain numerical operations by using multiple cores as well as smart chunking and caching to achieve large speedups
`bottleneck <https://github.com/pydata/bottleneck>`__ 1.3.6 performance Accelerates certain types of ``nan`` by using specialized cython routines to achieve large speedup.
`numba <https://github.com/numba/numba>`__ 0.56.4 performance Alternative execution engine for operations that accept ``engine="numba"`` using a JIT compiler that translates Python functions to optimized machine code using the LLVM compiler.
`bodo <https://github.com/bodo-ai/Bodo>`__ 2024.11 performance Alternative execution engine for operations that accept ``engine="bodo"`` using a JIT compiler that translates Python functions to optimized machine code using the LLVM compiler and automatically parallelizes uing MPI.
`bodo <https://github.com/bodo-ai/Bodo>`__ 2024.12.3 performance Alternative execution engine for operations that accept ``engine="bodo"`` using a JIT compiler that translates Python functions to optimized machine code using the LLVM compiler and automatically parallelizes uing MPI.
===================================================== ================== ================== ===================================================================================================================================================================================

Visualization
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies:
- lxml>=4.9.2
- matplotlib>=3.6.3
- numba>=0.56.4
- bodo>=2024.11
- bodo>=2024.12.3
- numexpr>=2.8.4
- openpyxl>=3.1.0
- odfpy>=1.4.1
Expand Down
2 changes: 1 addition & 1 deletion pandas/compat/_optional.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"tzdata": "2022.7",
"qtpy": "2.3.0",
"pyqt5": "5.15.9",
"bodo": "2024.11",
"bodo": "2024.12.3",
}

# A mapping from import name to package name (on PyPI) for packages where
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ matplotlib = "pandas:plotting._matplotlib"
[project.optional-dependencies]
test = ['hypothesis>=6.84.0', 'pytest>=7.3.2', 'pytest-xdist>=3.4.0']
pyarrow = ['pyarrow>=10.0.1']
performance = ['bottleneck>=1.3.6', 'numba>=0.56.4', 'numexpr>=2.8.4', 'bodo>=2024.11']
performance = ['bottleneck>=1.3.6', 'numba>=0.56.4', 'numexpr>=2.8.4', 'bodo>=2024.12.3']
computation = ['scipy>=1.10.0', 'xarray>=2022.12.0']
fss = ['fsspec>=2022.11.0']
aws = ['s3fs>=2022.11.0']
Expand Down Expand Up @@ -97,7 +97,7 @@ all = ['adbc-driver-postgresql>=0.10.0',
'lxml>=4.9.2',
'matplotlib>=3.6.3',
'numba>=0.56.4',
'bodo>=2024.11',
'bodo>=2024.12.3',
'numexpr>=2.8.4',
'odfpy>=1.4.1',
'openpyxl>=3.1.0',
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jinja2>=3.1.2
lxml>=4.9.2
matplotlib>=3.6.3
numba>=0.56.4
bodo>=2024.11
bodo>=2024.12.3
numexpr>=2.8.4
openpyxl>=3.1.0
odfpy>=1.4.1
Expand Down

0 comments on commit 4c2e94a

Please sign in to comment.