Skip to content

Commit 6faab07

Browse files
authored
Fix bump script for jupytercad-lite (#691)
1 parent a4a0599 commit 6faab07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/jupytercad_lite/scripts/bump-version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def bump():
4141
args = parser.parse_args()
4242
py_version = next_version() if args.version == "next" else args.version
4343
# bump the Python version with hatch
44-
run(f"{HATCH_VERSION}", shell=True, check=True, cwd=ROOT)
44+
run(f"{HATCH_VERSION} {py_version}", shell=True, check=True, cwd=ROOT)
4545
# pin jupytercad_* package to the same version
4646
bump_jupytercad_deps(py_version)
4747

0 commit comments

Comments
 (0)