Skip to content

Commit 7db43cb

Browse files
versioning consistency and bump
1 parent 7b39ea8 commit 7db43cb

File tree

5 files changed

+9
-14
lines changed

5 files changed

+9
-14
lines changed

pyproject.toml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "nx-vis-visualizer"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A Python wrapper for rendering NetworkX graphs interactively using vis.js."
55
readme = "README.md"
66
requires-python = ">=3.12"
@@ -9,15 +9,11 @@ license = {text = "MIT"}
99
keywords = ["networkx", "vis.js", "graph", "visualization", "interactive"]
1010

1111
classifiers = [
12-
"Development Status :: 3 - Alpha",
12+
"Development Status :: 4 - Beta",
1313
"Intended Audience :: Developers",
1414
"Intended Audience :: Science/Research",
1515
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.8",
18-
"Programming Language :: Python :: 3.9",
19-
"Programming Language :: Python :: 3.10",
20-
"Programming Language :: Python :: 3.11",
2117
"Programming Language :: Python :: 3.12",
2218
"Topic :: Scientific/Engineering :: Visualization",
2319
"Topic :: Software Development :: Libraries :: Python Modules",

src/nx_vis_visualizer.egg-info/PKG-INFO

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
Metadata-Version: 2.4
22
Name: nx-vis-visualizer
3-
Version: 0.1.1
3+
Version: 0.1.2
44
Summary: A Python wrapper for rendering NetworkX graphs interactively using vis.js.
55
License: MIT
66
Keywords: networkx,vis.js,graph,visualization,interactive
7-
Classifier: Development Status :: 3 - Alpha
7+
Classifier: Development Status :: 4 - Beta
88
Classifier: Intended Audience :: Developers
99
Classifier: Intended Audience :: Science/Research
1010
Classifier: License :: OSI Approved :: MIT License
1111
Classifier: Programming Language :: Python :: 3
12-
Classifier: Programming Language :: Python :: 3.8
13-
Classifier: Programming Language :: Python :: 3.9
14-
Classifier: Programming Language :: Python :: 3.10
15-
Classifier: Programming Language :: Python :: 3.11
1612
Classifier: Programming Language :: Python :: 3.12
1713
Classifier: Topic :: Scientific/Engineering :: Visualization
1814
Classifier: Topic :: Software Development :: Libraries :: Python Modules

src/nx_vis_visualizer.egg-info/SOURCES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ src/nx_vis_visualizer.egg-info/SOURCES.txt
88
src/nx_vis_visualizer.egg-info/dependency_links.txt
99
src/nx_vis_visualizer.egg-info/requires.txt
1010
src/nx_vis_visualizer.egg-info/top_level.txt
11-
tests/test_core.py
11+
tests/test_core.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

src/nx_vis_visualizer/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# src/nx_vis_visualizer/__init__.py
22

3+
from importlib.metadata import version
4+
35
from .core import DEFAULT_VIS_OPTIONS, nx_to_vis
46

5-
__version__ = "0.1.1" # Should match pyproject.toml
7+
__version__ = version("nx-vis-visualizer") # Get version from pyproject.toml
68

79
__all__ = [
810
"DEFAULT_VIS_OPTIONS",

0 commit comments

Comments
 (0)