Skip to content

Commit

Permalink
Merge branch 'numpy2'
Browse files Browse the repository at this point in the history
  • Loading branch information
luweizheng committed Sep 24, 2024
2 parents e4fad51 + 997823f commit b209a5b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
find . -name "CMakeLists.txt" -not -path "*third_party/*" | xargs cmake-format -c .cmake-format.yaml --check
build_test_job:
if: github.repository == 'xorbitsai/xoscar'
# if: github.repository == 'xorbitsai/xoscar'
runs-on: ${{ matrix.os }}
needs: lint
env:
Expand Down
2 changes: 1 addition & 1 deletion CI/conda-environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: xoscar-test
channels:
- defaults
dependencies:
- numpy<2.0.0
- numpy
- cloudpickle
- coverage
- cython
Expand Down
2 changes: 1 addition & 1 deletion CI/requirements-wheel.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
oldest-supported-numpy

numpy<2.0.0
numpy
packaging
wheel

Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ requires = [
"pandas==1.4.0; python_version>='3.10' and python_version<'3.11' and platform_machine=='arm64'",
"pandas==1.5.1; python_version>='3.11' and python_version<'3.12'",
"pandas>=2.1.1; python_version>'3.11'",
"numpy<2.0.0",
"numpy",
"cython>=0.29.33",
"requests>=2.4.0",
"cloudpickle>=2.2.1; python_version>='3.11'",
Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ zip_safe = False
include_package_data = True
packages = find:
install_requires =
numpy>=1.14.0,<2.0.0
numpy>=1.14.0
pandas>=1.0.0
scipy>=1.0.0; sys_platform!="win32" or python_version>="3.10"
scipy>=1.0.0,<=1.9.1; sys_platform=="win32" and python_version<"3.10"
Expand Down

0 comments on commit b209a5b

Please sign in to comment.