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 f1009c3 commit 76cf986Copy full SHA for 76cf986
1 file changed
.github/workflows/pypi.yml
@@ -7,14 +7,14 @@ jobs:
7
publish:
8
runs-on: ubuntu-latest
9
steps:
10
- - uses: actions/checkout@v2
11
- - uses: actions/setup-python@v2
+ - uses: actions/checkout@v3
+ - uses: actions/setup-python@v4
12
with:
13
python-version: '3.x'
14
- name: Install and configure Poetry
15
- uses: snok/install-poetry@v1.1.1
16
- with:
17
- virtualenvs-create: false
+ run: |
+ pip install -U pip poetry
+ poetry config virtualenvs.create false
18
- name: Build dists
19
run: make build
20
- name: Pypi Publish
0 commit comments