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 a925409 commit d0a6a03Copy full SHA for d0a6a03
.github/workflows/publish.yaml
.github/workflows/release.yml
@@ -22,12 +22,15 @@ jobs:
22
with:
23
python-version: 3.11
24
25
+ - name: Install build tools
26
+ run: |
27
+ pip install --upgrade build
28
+
29
- name: Build and package
30
env:
31
CHECK_VERSION: 'true'
32
run: |
- pip install wheel
- python setup.py sdist bdist_wheel
33
+ python -m build
34
35
- name: Upload to PyPI
36
uses: pypa/gh-action-pypi-publish@release/v1
MANIFEST.in
@@ -0,0 +1 @@
1
+include src/pyscript/version
0 commit comments