We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54a862a commit 37e4289Copy full SHA for 37e4289
.github/workflows/publish-pypi.yml
@@ -20,7 +20,7 @@ jobs:
20
run: echo "VERSION=${TAG#v}" >> $GITHUB_OUTPUT
21
22
- name: Install Poetry
23
- run: pipx install poetry
+ run: pip install poetry
24
- name: Set up Python 3.12
25
uses: actions/setup-python@v5
26
with:
@@ -29,11 +29,6 @@ jobs:
29
30
- name: Install Python dependencies
31
run: |
32
- # sudo apt-get install -y python3-setuptools
33
- # pip install poetry
34
- # poetry config virtualenvs.create false
35
- # poetry export --dev --without-hashes -o requirements.txt
36
- # pip install -r requirements.txt
37
poetry version ${{ steps.get_version.outputs.VERSION }}
38
poetry install
39
0 commit comments