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 b35d04a commit 1a161f9Copy full SHA for 1a161f9
.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
@@ -10,7 +10,8 @@
10
dist = Distribution()
11
dist.parse_config_files()
12
13
-NAME = dist.get_name() # type: ignore
+
14
+NAME: str = dist.get_name() # type: ignore
15
16
# Check if building for Pyodide
is_pyodide = os.getenv("PYODIDE", "0") == "1"
0 commit comments