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 34ec784 commit 8711cabCopy full SHA for 8711cab
.github/workflows/publish-to-pypi.yaml
@@ -13,21 +13,20 @@ jobs:
13
- uses: actions/checkout@v3
14
with:
15
fetch-depth: 0
16
-
17
- name: Set up Python
18
uses: actions/setup-python@v3
19
20
python-version: '3.10'
21
22
- - name: Install build tools first
+ - name: Installing package
23
run: |
24
- pip install --upgrade pip setuptools wheel build setuptools_scm
25
+ pip3 install .
+ pip3 install .[pypi]
+ pip3 install build wheel
+ pip3 install setuptools --upgrade
26
+ pip3 install setuptools_scm
27
- name: Build Package
28
29
python -m build --no-isolation
30
31
- name: Publish package to PyPI
32
uses: pypa/gh-action-pypi-publish@release/v1
33
0 commit comments