Skip to content

Commit dc33ccc

Browse files
authored
Merge pull request #67 from Stoops-ML/v3.1.0
Support Python 3.14
2 parents a8a0c0f + 16695b4 commit dc33ccc

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: ['3.10', '3.11', '3.12', '3.13']
10+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1111
steps:
1212
- uses: actions/checkout@v3
1313
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# v3.1.0
2+
3+
* Support Python 3.14
4+
15
# v3.0.0
26

37
* Flattened `PolylineArrowMaterial`, `PolylineDashMaterial`, `PolylineOutlineMaterial`, and `PolylineGlowMaterial`

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ select = [
1313
[tool.tox]
1414
legacy_tox_ini = """
1515
[tox]
16-
envlist = quality, test, pypy, pypy3, py{310,311,312,313}
16+
envlist = quality, test, pypy, pypy3, py{310,311,312,313,314}
1717
1818
[gh-actions]
1919
python =
2020
3.10: py310
2121
3.11: py311, quality, test, pypy, pypy3
2222
3.12: py312
2323
3.13: py313
24+
3.14: py314
2425
2526
[testenv]
2627
basepython =
@@ -30,6 +31,7 @@ legacy_tox_ini = """
3031
py311: {env:PYTHON:python3.11}
3132
py312: {env:PYTHON:python3.12}
3233
py313: {env:PYTHON:python3.13}
34+
py314: {env:PYTHON:python3.14}
3335
{quality,test,coverage}: {env:PYTHON:python3}
3436
setenv =
3537
PYTHONUNBUFFERED = yes
@@ -78,6 +80,7 @@ classifiers = [
7880
"Programming Language :: Python :: 3.11",
7981
"Programming Language :: Python :: 3.12",
8082
"Programming Language :: Python :: 3.13",
83+
"Programming Language :: Python :: 3.14",
8184
"Programming Language :: Python :: Implementation :: CPython",
8285
"Intended Audience :: Education",
8386
"Intended Audience :: Science/Research",

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__ = "3.0.0"
3+
__version__ = "3.1.0"
44

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

0 commit comments

Comments
 (0)