jupytergis-lite 0.4.0__tar.gz → 0.4.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jupytergis-lite
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  License: BSD 3-Clause License
5
5
 
6
6
  Copyright (c) 2025, JupyterGIS contributors
@@ -45,8 +45,8 @@ Classifier: Programming Language :: Python :: 3.10
45
45
  Classifier: Programming Language :: Python :: 3.11
46
46
  Classifier: Programming Language :: Python :: 3.12
47
47
  Requires-Python: >=3.10
48
- Requires-Dist: jupytergis-core==0.4.0
49
- Requires-Dist: jupytergis-lab==0.4.0
48
+ Requires-Dist: jupytergis-core==0.4.1
49
+ Requires-Dist: jupytergis-lab==0.4.1
50
50
  Requires-Dist: my-jupyter-shared-drive
51
51
  Description-Content-Type: text/markdown
52
52
 
@@ -1,3 +1,3 @@
1
- __version__ = "0.4.0"
1
+ __version__ = "0.4.1"
2
2
 
3
3
  from jupytergis_lab import GISDocument # noqa
@@ -19,8 +19,8 @@ classifiers = [
19
19
  "Programming Language :: Python :: 3.12",
20
20
  ]
21
21
  dependencies = [
22
- "jupytergis_core==0.4.0",
23
- "jupytergis_lab==0.4.0",
22
+ "jupytergis_core==0.4.1",
23
+ "jupytergis_lab==0.4.1",
24
24
  "my-jupyter-shared-drive",
25
25
  ]
26
26
  dynamic = ["version"]
@@ -41,7 +41,7 @@ def bump():
41
41
  args = parser.parse_args()
42
42
  py_version = next_version() if args.version == "next" else args.version
43
43
  # 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)
45
45
  # pin jupytergis_* package to the same version
46
46
  bump_jupytergis_deps(py_version)
47
47
 
File without changes