Skip to content

Commit

Permalink
Merge pull request #1463 from jameslamb/branch-24.12-merge-24.10
Browse files Browse the repository at this point in the history
Merge branch-24.10 into branch-24.12
  • Loading branch information
AyodeAwe committed Sep 25, 2024
2 parents 33404e8 + a9ad86e commit 2f4a108
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion ci/release/update-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ NEXT_MINOR=$(echo $NEXT_FULL_TAG | awk '{split($0, a, "."); print a[2]}')
NEXT_SHORT_TAG=${NEXT_MAJOR}.${NEXT_MINOR}

# Need to distutils-normalize the original version
NEXT_SHORT_TAG_PEP440=$(python -c "from setuptools.extern import packaging; print(packaging.version.Version('${NEXT_SHORT_TAG}'))")
NEXT_SHORT_TAG_PEP440=$(python -c "from packaging.version import Version; print(Version('${NEXT_SHORT_TAG}'))")

echo "Preparing release $CURRENT_TAG => $NEXT_FULL_TAG"

Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-118_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ dependencies:
- nbsphinx
- ninja
- notebook
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- nvcc_linux-64=11.8
- osmnx>=1.9.3
- pre-commit
- proj >=9.3.0,<9.3.1.0a0
- proj
- pydata-sphinx-theme!=0.14.2
- pydeck
- pylibcudf==24.12.*,>=0.0.0a0
Expand Down
4 changes: 2 additions & 2 deletions conda/environments/all_cuda-125_arch-x86_64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ dependencies:
- nbsphinx
- ninja
- notebook
- numpy>=1.23,<2.0a0
- numpy>=1.23,<3.0a0
- numpydoc
- osmnx>=1.9.3
- pre-commit
- proj >=9.3.0,<9.3.1.0a0
- proj
- pydata-sphinx-theme!=0.14.2
- pydeck
- pylibcudf==24.12.*,>=0.0.0a0
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuproj/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ requirements:
- rapids-build-backend >=0.3.0,<0.4.0.dev0
- librmm ={{ minor_version }}
- scikit-build-core >=0.10.0
- proj >=9.3.0,<9.3.1.0a0 # TODO: proj is being held back due to needing spdlog/fmt upgrades to support recent conda-forge builds of tiledb
- proj
- sqlite
run:
{% if cuda_major == "11" %}
Expand Down
2 changes: 1 addition & 1 deletion conda/recipes/cuspatial/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ requirements:
- cudf ={{ minor_version }}
- pylibcudf ={{ minor_version }}
- geopandas >=1.0.0
- numpy >=1.23,<2.0a0
- numpy >=1.23,<3.0a0
- python
- rmm ={{ minor_version }}

Expand Down
4 changes: 2 additions & 2 deletions conda/recipes/libcuspatial/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ requirements:
- libcudf ={{ minor_version }}
- librmm ={{ minor_version }}
- sqlite
- proj >=9.3.0,<9.3.1.0a0 # TODO: proj is being held back due to needing spdlog/fmt upgrades to support recent conda-forge builds of tiledb
- proj

outputs:
- name: libcuspatial
Expand Down Expand Up @@ -85,7 +85,7 @@ outputs:
- libcudf ={{ minor_version }}
- librmm ={{ minor_version }}
- sqlite
- proj >=9.3.0,<9.3.1.0a0 # TODO: proj is being held back due to needing spdlog/fmt upgrades to support recent conda-forge builds of tiledb
- proj
test:
commands:
- test -f $PREFIX/lib/libcuspatial.so
Expand Down
4 changes: 2 additions & 2 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ dependencies:
packages:
- c-compiler
- cxx-compiler
- proj >=9.3.0,<9.3.1.0a0 # TODO: proj is being held back due to needing spdlog/fmt upgrades to support recent conda-forge builds of tiledb
- proj
- sqlite
specific:
- output_types: conda
Expand Down Expand Up @@ -400,7 +400,7 @@ dependencies:
- output_types: [conda, requirements, pyproject]
packages:
- &geopandas geopandas>=1.0.0
- &numpy numpy>=1.23,<2.0a0
- &numpy numpy>=1.23,<3.0a0
test_python_cuspatial:
common:
- output_types: [conda, requirements, pyproject]
Expand Down
2 changes: 1 addition & 1 deletion python/cuproj/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ classifiers = [
test = [
"cuspatial==24.12.*,>=0.0.0a0",
"geopandas>=1.0.0",
"numpy>=1.23,<2.0a0",
"numpy>=1.23,<3.0a0",
"pyproj>=3.6.0,<3.7a0",
"pytest",
"pytest-cov",
Expand Down
2 changes: 1 addition & 1 deletion python/cuspatial/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ dependencies = [
"geopandas>=1.0.0",
"libcudf==24.12.*,>=0.0.0a0",
"libcuspatial==24.12.*,>=0.0.0a0",
"numpy>=1.23,<2.0a0",
"numpy>=1.23,<3.0a0",
"rmm==24.12.*,>=0.0.0a0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit ../../dependencies.yaml and run `rapids-dependency-file-generator`.
classifiers = [
Expand Down

0 comments on commit 2f4a108

Please sign in to comment.