Skip to content

Commit 68e5338

Browse files
committed
Revert unnecessary
1 parent 1eb1586 commit 68e5338

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
@@ -11,7 +11,8 @@
1111
dist = Distribution()
1212
dist.parse_config_files()
1313

14-
NAME = dist.get_name() # type: ignore
14+
15+
NAME: str = dist.get_name() # type: ignore
1516

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

0 commit comments

Comments
 (0)