Skip to content

Commit

Permalink
fix adaptdl-ray release ver
Browse files Browse the repository at this point in the history
  • Loading branch information
odp committed Apr 20, 2022
1 parent 16bc63c commit 6fe1744
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
cd adaptdl
HOME=$(pwd) python setup.py sdist bdist_wheel
ls -ltr dist/
python -m twine upload dist/*
python -m twine upload --verbose dist/*
- name: Build and push sched package
env:
TWINE_USERNAME: "__token__"
Expand All @@ -45,7 +45,7 @@ jobs:
cd sched
HOME=$(pwd) python setup.py sdist bdist_wheel
ls -ltr dist/
python -m twine upload dist/*
python -m twine upload --verbose dist/*
- name: Build and push ray package
env:
TWINE_USERNAME: "__token__"
Expand All @@ -55,7 +55,7 @@ jobs:
cd ray
HOME=$(pwd) python setup.py sdist bdist_wheel
ls -ltr dist/
python -m twine upload dist/*
python -m twine upload --verbose dist/*
- name: Build and push cli package
env:
TWINE_USERNAME: "__token__"
Expand All @@ -65,4 +65,4 @@ jobs:
cd cli
HOME=$(pwd) python setup.py sdist bdist_wheel
ls -ltr dist/
python -m twine upload dist/*
python -m twine upload --verbose dist/*
2 changes: 1 addition & 1 deletion ray/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def read_requirements(file_path):
if __name__ == "__main__":
setuptools.setup(
name="adaptdl-ray",
version=os.getenv("ADAPTDL_RAY_VERSION", "0.0.0"),
version=os.getenv("ADAPTDL_VERSION", "0.0.0"),
author="Petuum Inc. & The AdaptDL Authors",
author_email="[email protected]",
description="Dynamic-resource trainer and scheduler for deep learning",
Expand Down

0 comments on commit 6fe1744

Please sign in to comment.