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 52341d5 commit 2fc7de9Copy full SHA for 2fc7de9
.github/workflows/test.yml
@@ -119,7 +119,7 @@ jobs:
119
hatch run test:nowarn || hatch run test:nowarn --lf
120
121
docs:
122
- runs-on: windows-latest
+ runs-on: ubuntu-latest
123
timeout-minutes: 10
124
steps:
125
- uses: actions/checkout@v4
jupyter_releaser/lib.py
@@ -430,7 +430,7 @@ def publish_assets(
430
dist: Union[Type[SDist], Type[Wheel]]
431
dist = SDist if suffix == ".gz" else Wheel
432
pkg = dist(path)
433
- pkg_name = canonicalize_name(pkg.name)
+ pkg_name = canonicalize_name(pkg.name or "")
434
if not python_package_name or python_package_name == pkg_name:
435
env = os.environ.copy()
436
env["TWINE_PASSWORD"] = twine_token
0 commit comments