Spaces:
Running
Running
Andrea Maldonado
commited on
Commit
Β·
4757c83
1
Parent(s):
745687d
Upgrades to gedi 1.0.8
Browse files- .github/workflows/pypi_release.yml +3 -5
- setup.py +1 -1
.github/workflows/pypi_release.yml
CHANGED
@@ -53,12 +53,10 @@ jobs:
|
|
53 |
name: python-package-distributions
|
54 |
path: dist/
|
55 |
- name: Publish distribution π¦ to PyPI
|
56 |
-
uses: pypa/gh-action-pypi-publish@release/v1
|
57 |
|
58 |
github-release:
|
59 |
-
name:
|
60 |
-
Sign the Python π distribution π¦ with Sigstore
|
61 |
-
and upload them to GitHub Release
|
62 |
needs:
|
63 |
- publish-to-pypi
|
64 |
runs-on: ubuntu-latest
|
@@ -73,7 +71,7 @@ jobs:
|
|
73 |
with:
|
74 |
name: python-package-distributions
|
75 |
path: dist/
|
76 |
-
- name: Sign the
|
77 |
uses: sigstore/[email protected]
|
78 |
with:
|
79 |
inputs: './dist/*.tar.gz ./dist/*.whl'
|
|
|
53 |
name: python-package-distributions
|
54 |
path: dist/
|
55 |
- name: Publish distribution π¦ to PyPI
|
56 |
+
uses: pypa/gh-action-pypi-publish@release/v1.12.4
|
57 |
|
58 |
github-release:
|
59 |
+
name: Sign the Python π distribution π¦ with Sigstore
|
|
|
|
|
60 |
needs:
|
61 |
- publish-to-pypi
|
62 |
runs-on: ubuntu-latest
|
|
|
71 |
with:
|
72 |
name: python-package-distributions
|
73 |
path: dist/
|
74 |
+
- name: Sign the distributions with Sigstore
|
75 |
uses: sigstore/[email protected]
|
76 |
with:
|
77 |
inputs: './dist/*.tar.gz ./dist/*.whl'
|
setup.py
CHANGED
@@ -4,7 +4,7 @@ import os
|
|
4 |
with open("README.md", "r") as fh:
|
5 |
long_description = fh.read()
|
6 |
|
7 |
-
version_string = os.environ.get("VERSION_PLACEHOLDER", "1.0.
|
8 |
print(version_string)
|
9 |
version = version_string
|
10 |
|
|
|
4 |
with open("README.md", "r") as fh:
|
5 |
long_description = fh.read()
|
6 |
|
7 |
+
version_string = os.environ.get("VERSION_PLACEHOLDER", "1.0.8")
|
8 |
print(version_string)
|
9 |
version = version_string
|
10 |
|