Skip to content

Commit

Permalink
Update python-publish.yml
Browse files Browse the repository at this point in the history
Fix issue with publishing package to pypi.
  • Loading branch information
Aesonus authored Nov 28, 2023
1 parent 70c75eb commit e3eaad5
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '>=3.9 <3.11'
cache: 'poetry'
- name: Set up Poetry
uses: Gr1N/setup-poetry@v8
- name: Install dependencies
run: |
poetry install
Expand Down

0 comments on commit e3eaad5

Please sign in to comment.