Skip to content

Commit

Permalink
fix release.yml to support newer poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
aryarm authored Jun 14, 2024
1 parent c88c9ad commit 2393d96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
if: ${{ steps.release.outputs.release_created }}
uses: actions/setup-python@v4
with:
python-version: '3.7'
python-version: '3.8'

- name: Upgrade pip
if: ${{ steps.release.outputs.release_created }}
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install Poetry
if: ${{ steps.release.outputs.release_created }}
run: |
pip install 'poetry==1.7.1'
pip install 'poetry==1.8.3'
poetry --version
- name: Bump version for developmental release
Expand Down
2 changes: 1 addition & 1 deletion dev-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- conda-forge::python=3.8 # the lowest version of python that we formally support
- conda-forge::pip==24.0
- conda-forge::poetry==1.8.3
- conda-forge::poetry==1.8.3 # should keep this in sync with version in release.yml
- conda-forge::nox==2024.4.15
- conda-forge::poetry-plugin-export==1.8.0
- pip:
Expand Down

0 comments on commit 2393d96

Please sign in to comment.