Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v3.1.0

* Support Python 3.14

# v3.0.0

* Flattened `PolylineArrowMaterial`, `PolylineDashMaterial`, `PolylineOutlineMaterial`, and `PolylineGlowMaterial`
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,15 @@ select = [
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = quality, test, pypy, pypy3, py{310,311,312,313}
envlist = quality, test, pypy, pypy3, py{310,311,312,313,314}

[gh-actions]
python =
3.10: py310
3.11: py311, quality, test, pypy, pypy3
3.12: py312
3.13: py313
3.14: py314

[testenv]
basepython =
Expand All @@ -30,6 +31,7 @@ legacy_tox_ini = """
py311: {env:PYTHON:python3.11}
py312: {env:PYTHON:python3.12}
py313: {env:PYTHON:python3.13}
py314: {env:PYTHON:python3.14}
{quality,test,coverage}: {env:PYTHON:python3}
setenv =
PYTHONUNBUFFERED = yes
Expand Down Expand Up @@ -78,6 +80,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion src/czml3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .core import CZML_VERSION, Document, Packet

__version__ = "3.0.0"
__version__ = "3.1.0"

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