Skip to content

Commit

Permalink
Revert unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki authored Aug 9, 2024
1 parent b35d04a commit 1a161f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ concurrency:
cancel-in-progress: true

jobs:
# The job to build precompiled pypi wheels.
make_sdist:
name: Make SDist
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
dist = Distribution()
dist.parse_config_files()

NAME = dist.get_name() # type: ignore

NAME: str = dist.get_name() # type: ignore

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

0 comments on commit 1a161f9

Please sign in to comment.