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.
2 parents d6dba49 + 7da44dc commit d5bbaf7Copy full SHA for d5bbaf7
2 files changed
.github/workflows/pypi.yaml
@@ -13,8 +13,13 @@ env:
13
jobs:
14
pypi:
15
runs-on: ubuntu-latest
16
+ permissions:
17
+ id-token: write
18
steps:
19
- uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ fetch-tags: true
23
24
- uses: actions/setup-python@v5
25
@@ -28,5 +33,3 @@ jobs:
28
33
- name: Publish package
29
34
if: ${{ env.PUBLISH_TO_PYPI == 'true' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags')}}
30
35
uses: pypa/gh-action-pypi-publish@release/v1
31
- with:
32
- password: ${{ secrets.PYPI_PUBLISH_API_KEY }}
quasiqueue/__init__.py
@@ -1,5 +1,5 @@
1
try:
2
- from . import _version
+ from . import _version # type: ignore
3
4
__version__ = _version.__version__
5
except: # noqa: E722
0 commit comments