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 1eb1586 commit 68e5338Copy full SHA for 68e5338
.github/workflows/pypi.yml
@@ -17,6 +17,7 @@ concurrency:
17
cancel-in-progress: true
18
19
jobs:
20
+ # The job to build precompiled pypi wheels.
21
make_sdist:
22
name: Make SDist
23
runs-on: ubuntu-latest
setup.py
@@ -11,7 +11,8 @@
11
dist = Distribution()
12
dist.parse_config_files()
13
14
-NAME = dist.get_name() # type: ignore
+
15
+NAME: str = dist.get_name() # type: ignore
16
# Check if building for Pyodide
is_pyodide = os.getenv("PYODIDE", "0") == "1"
0 commit comments