Skip to content

Commit f9a733a

Browse files
authored
Merge pull request #87 from lsst/tickets/DM-52359
DM-52359: Build for python 3.14
2 parents 42132ef + 783d72c commit f9a733a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
python-version: ["3.10", "3.11", "3.12", "3.13"]
16+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1717

1818
steps:
1919
- uses: actions/checkout@v4
@@ -49,7 +49,7 @@ jobs:
4949
- name: Set up Python
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version: "3.12"
52+
python-version: "3.13"
5353
cache: "pip"
5454
cache-dependency-path: "setup.cfg"
5555

@@ -105,7 +105,7 @@ jobs:
105105
strategy:
106106
matrix:
107107
os: ["ubuntu-latest", "macos-latest"]
108-
python-version: ["310", "311", "312", "313"]
108+
python-version: ["310", "311", "312", "313", "314"]
109109
runs-on: ${{ matrix.os }}
110110
needs: [build_and_test]
111111
if: startsWith(github.ref, 'refs/tags/')
@@ -129,7 +129,7 @@ jobs:
129129
- name: Set up Python
130130
uses: actions/setup-python@v5
131131
with:
132-
python-version: "3.12"
132+
python-version: "3.13"
133133

134134
- name: Install dependencies
135135
run: |

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
2929
"Programming Language :: Python :: 3.13",
30+
"Programming Language :: Python :: 3.14",
3031
"Topic :: Scientific/Engineering :: Astronomy",
3132
]
3233
keywords = ["lsst"]

0 commit comments

Comments
 (0)