Skip to content

Commit

Permalink
Stop setting package version attribute in wheels (#3350)
Browse files Browse the repository at this point in the history
This PR removes modification of the `__init__.py::version` attribute that occurs during the wheel build process. See rapidsai/ops#2592 for more information.

Authors:
  - Vyas Ramasubramani (https://github.com/vyasr)

Approvers:
  - Sevag H (https://github.com/sevagh)

URL: #3350
  • Loading branch information
vyasr authored Mar 21, 2023
1 parent cbd18ab commit 4b14e47
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions ci/release/apply_wheel_modifications.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,6 @@
VERSION=${1}
CUDA_SUFFIX=${2}

# __init__.py updates
sed -i "s/__version__ = .*/__version__ = \"${VERSION}\"/g" \
python/cugraph/cugraph/__init__.py \
python/cugraph-dgl/cugraph_dgl/__init__.py \
python/cugraph-pyg/cugraph_pyg/__init__.py \
python/cugraph-service/client/cugraph_service_client/__init__.py \
python/cugraph-service/server/cugraph_service_server/__init__.py \
python/pylibcugraph/pylibcugraph/__init__.py

# setup.py updates
sed -i "s/^version = .*/version = \"${VERSION}\"/g" \
python/cugraph/pyproject.toml \
Expand Down

0 comments on commit 4b14e47

Please sign in to comment.