We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 959eb18 commit ad001dfCopy full SHA for ad001df
1 file changed
.github/workflows/publish.yml
@@ -12,16 +12,16 @@ jobs:
12
- uses: actions/checkout@v3
13
- uses: actions/setup-python@v4
14
with:
15
- python-version: 3.9
+ python-version: '3.11'
16
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
20
- pip install setuptools wheel twine
21
- python setup.py sdist bdist_wheel
+ pip install -U build setuptools wheel
+ python -m build --no-isolation
22
23
- name: Publish package
24
- uses: pypa/gh-action-pypi-publish@master
+ uses: pypa/gh-action-pypi-publish@release/v1
25
26
user: __token__
27
password: ${{ secrets.PYPI_TOKEN }}
0 commit comments