We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b348c1 commit 475df90Copy full SHA for 475df90
.github/workflows/upload-pypi.yaml
@@ -61,15 +61,18 @@ jobs:
61
with:
62
python-version: ${{ matrix.python-version }}
63
# ------------ Install poetry
64
- - name: Setup pip/poetry
65
- run: |
66
- pip install -U pip poetry twine
67
- poetry config virtualenvs.create false
+# - name: Setup pip/poetry
+# run: |
+# pip install -U pip poetry twine
+# poetry config virtualenvs.create false
68
# ------------ build and install package
69
- name: Install package
70
run: |
71
- poetry install
72
- poetry build
+# poetry install
+# poetry build
73
+ pip install -e .
74
+ python setup.py sdist
75
+ pip wheel . -w dist
76
# ------------ publish to pypi
77
- name: Publish to PyPI
78
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments