Skip to content

Commit 4c2e94a

Browse files
author
=
committed
adjust minimum version requirements
1 parent 27fbc0a commit 4c2e94a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ dependencies:
3838
- lxml=4.9.2
3939
- matplotlib=3.6.3
4040
- numba=0.56.4
41-
- bodo=2024.11
41+
- bodo=2024.12.3
4242
- numexpr=2.8.4
4343
- odfpy=1.4.1
4444
- qtpy=2.3.0

doc/source/getting_started/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Dependency Minimum Version pip ext
186186
`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
187187
`bottleneck <https://github.com/pydata/bottleneck>`__ 1.3.6 performance Accelerates certain types of ``nan`` by using specialized cython routines to achieve large speedup.
188188
`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.
189-
`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.
189+
`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.
190190
===================================================== ================== ================== ===================================================================================================================================================================================
191191

192192
Visualization

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies:
4141
- lxml>=4.9.2
4242
- matplotlib>=3.6.3
4343
- numba>=0.56.4
44-
- bodo>=2024.11
44+
- bodo>=2024.12.3
4545
- numexpr>=2.8.4
4646
- openpyxl>=3.1.0
4747
- odfpy>=1.4.1

pandas/compat/_optional.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"tzdata": "2022.7",
5858
"qtpy": "2.3.0",
5959
"pyqt5": "5.15.9",
60-
"bodo": "2024.11",
60+
"bodo": "2024.12.3",
6161
}
6262

6363
# A mapping from import name to package name (on PyPI) for packages where

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ matplotlib = "pandas:plotting._matplotlib"
6060
[project.optional-dependencies]
6161
test = ['hypothesis>=6.84.0', 'pytest>=7.3.2', 'pytest-xdist>=3.4.0']
6262
pyarrow = ['pyarrow>=10.0.1']
63-
performance = ['bottleneck>=1.3.6', 'numba>=0.56.4', 'numexpr>=2.8.4', 'bodo>=2024.11']
63+
performance = ['bottleneck>=1.3.6', 'numba>=0.56.4', 'numexpr>=2.8.4', 'bodo>=2024.12.3']
6464
computation = ['scipy>=1.10.0', 'xarray>=2022.12.0']
6565
fss = ['fsspec>=2022.11.0']
6666
aws = ['s3fs>=2022.11.0']
@@ -97,7 +97,7 @@ all = ['adbc-driver-postgresql>=0.10.0',
9797
'lxml>=4.9.2',
9898
'matplotlib>=3.6.3',
9999
'numba>=0.56.4',
100-
'bodo>=2024.11',
100+
'bodo>=2024.12.3',
101101
'numexpr>=2.8.4',
102102
'odfpy>=1.4.1',
103103
'openpyxl>=3.1.0',

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jinja2>=3.1.2
2929
lxml>=4.9.2
3030
matplotlib>=3.6.3
3131
numba>=0.56.4
32-
bodo>=2024.11
32+
bodo>=2024.12.3
3333
numexpr>=2.8.4
3434
openpyxl>=3.1.0
3535
odfpy>=1.4.1

0 commit comments

Comments
 (0)