Skip to content

Commit 174fd1c

Browse files
authored
Merge pull request #65 from Stoops-ML/v3.0.0
V3.0.0
2 parents 317d918 + 5259bcc commit 174fd1c

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

pyproject.toml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,21 +93,32 @@ dependencies = [
9393
]
9494
dynamic = ["version"]
9595

96-
[project.optional-dependencies]
96+
[project.urls]
97+
Repository = "https://github.com/Stoops-ML/czml3"
98+
Documentation = "https://czml3.readthedocs.io/en"
99+
100+
[dependency-groups]
97101
dev = [
102+
"build",
98103
"pytest",
99104
"pytest-cov",
100105
"pytest-mypy",
101-
"types-python-dateutil",
106+
"ruff",
102107
"tox",
108+
"types-python-dateutil",
109+
]
110+
111+
[project.optional-dependencies]
112+
dev = [
103113
"build",
114+
"pytest",
115+
"pytest-cov",
116+
"pytest-mypy",
104117
"ruff",
118+
"tox",
119+
"types-python-dateutil",
105120
]
106121

107-
[project.urls]
108-
Repository = "https://github.com/Stoops-ML/czml3"
109-
Documentation = "https://czml3.readthedocs.io/en"
110-
111122
[tool.setuptools.dynamic]
112123
version = {attr = "czml3.__version__"}
113124

src/czml3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .core import CZML_VERSION, Document, Packet
22

3-
__version__ = "2.3.6"
3+
__version__ = "3.0.0"
44

55
__all__ = ["Document", "Packet", "CZML_VERSION"]

0 commit comments

Comments
 (0)