Skip to content

Commit

Permalink
Bump poetry version to 1.4.0 for releases (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
parasj authored Mar 15, 2023
1 parent cdd152e commit aa3359a
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/poetry-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
python-version: 3.8
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.2.1
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
Expand All @@ -33,7 +33,6 @@ jobs:
run: |
poetry install -E gateway -E solver -E aws -E azure -E gcp
poetry run pip install -r requirements-dev.txt
if: steps.cache.outputs.cache-hit != 'true'
- name: Build package
run: |
export SKYPLANEVERSION=`poetry version | awk 'END {print $NF}'`
Expand All @@ -54,7 +53,7 @@ jobs:
with:
python-version: 3.8
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.2.1
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
Expand All @@ -72,7 +71,6 @@ jobs:
run: |
poetry install -E gateway -E solver -E aws -E azure -E gcp
poetry run pip install -r requirements-dev.txt
if: steps.cache.outputs.cache-hit != 'true'
- name: Build package under skyplane-dev name
run: |
sed -i 's/name = "skyplane"/name = "skyplane-dev"/g' pyproject.toml
Expand All @@ -94,7 +92,7 @@ jobs:
with:
python-version: 3.8
- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.2.1
run: curl -sSL https://install.python-poetry.org | python3 - --version 1.4.0
- name: Cache Poetry virtualenv
uses: actions/cache@v1
id: cache
Expand All @@ -112,7 +110,6 @@ jobs:
run: |
poetry install -E gateway -E solver -E aws -E azure -E gcp
poetry run pip install -r requirements-dev.txt
if: steps.cache.outputs.cache-hit != 'true'
- name: Build package under skyplane name
run: |
export SKYPLANEVERSION=`poetry version | awk 'END {print $NF}'`
Expand Down

0 comments on commit aa3359a

Please sign in to comment.