Skip to content

Commit 1a161f9

Browse files
authored
Revert unnecessary
1 parent b35d04a commit 1a161f9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ concurrency:
1717
cancel-in-progress: true
1818

1919
jobs:
20+
# The job to build precompiled pypi wheels.
2021
make_sdist:
2122
name: Make SDist
2223
runs-on: ubuntu-latest

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
dist = Distribution()
1111
dist.parse_config_files()
1212

13-
NAME = dist.get_name() # type: ignore
13+
14+
NAME: str = dist.get_name() # type: ignore
1415

1516
# Check if building for Pyodide
1617
is_pyodide = os.getenv("PYODIDE", "0") == "1"

0 commit comments

Comments
 (0)