Skip to content

Commit fa2df27

Browse files
Merge pull request #164 from stac-utils/feature/add-python3.13
Feature/add python3.13
2 parents 14d7290 + 8cd1ab2 commit fa2df27

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

Diff for: .github/workflows/cicd.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ on:
99
- '*'
1010
pull_request:
1111
env:
12-
LATEST_PY_VERSION: '3.12'
12+
LATEST_PY_VERSION: '3.13'
1313

1414
jobs:
1515
tests:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
19+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
2020

2121
steps:
2222
- uses: actions/checkout@v4
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up Python 3.x
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: "3.x"
2121

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11

22
## Unreleased
33

4+
## 3.1.4 (2025-01-08)
5+
6+
- Fix URL comparison for Landing page conformance (#163, @gadomski)
47
- Fix `Search` validation when `datetime` is `None` (#165, @gadomski)
58

69
## 3.1.3 (2024-10-14)

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ classifiers=[
1414
"Programming Language :: Python :: 3.10",
1515
"Programming Language :: Python :: 3.11",
1616
"Programming Language :: Python :: 3.12",
17+
"Programming Language :: Python :: 3.13",
1718
"License :: OSI Approved :: MIT License",
1819
]
1920
keywords=["stac", "pydantic", "validation"]

Diff for: stac_pydantic/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""stac-pydantic and STAC spec versions."""
22

3-
__version__ = "3.1.3"
3+
__version__ = "3.1.4"
44

55
STAC_VERSION = "1.0.0"

0 commit comments

Comments
 (0)