diff --git a/pyproject.toml b/pyproject.toml index 908aae0..2a3b95b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,7 +87,6 @@ classifiers = [ dependencies = [ "pydantic>=2.10.1", "python-dateutil>=2.7,<3", - "w3lib", "typing-extensions>=4.12.0", "StrEnum>=0.4.0", "numpy", @@ -139,8 +138,5 @@ disallow_untyped_defs = true # Ignore certain missing imports [[tool.mypy.overrides]] -module = [ - "setuptools.*", - "w3lib.*", -] +module = ["setuptools.*"] ignore_missing_imports = true diff --git a/src/czml3/__init__.py b/src/czml3/__init__.py index d3c1336..26adc0f 100644 --- a/src/czml3/__init__.py +++ b/src/czml3/__init__.py @@ -1,5 +1,5 @@ from .core import CZML_VERSION, Document, Packet -__version__ = "2.3.1" +__version__ = "2.3.2" __all__ = ["Document", "Packet", "CZML_VERSION"]