Skip to content

Commit 383b6fc

Browse files
authored
merge back: python versions were changed directly in main (#384)
2 parents 9b36f21 + 75a2226 commit 383b6fc

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
21+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2222

2323
runs-on: ${{ matrix.os }}
2424

.github/workflows/run-e2-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: true
1919
matrix:
2020
os: [ubuntu-latest, macos-latest, windows-latest]
21-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
21+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
2222

2323
runs-on: ${{ matrix.os }}
2424

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ubuntu-latest, macos-latest, windows-latest]
18-
python-version: ['3.10', '3.11', '3.12', '3.13']
18+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1919

2020
runs-on: ${{ matrix.os }}
2121

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ authors = [{name="Tableau", email="github@tableau.com"}]
3232
license = "MIT"
3333
license-files = ["LICENSE"]
3434
readme = "res/README.md"
35-
requires-python = ">=3.9" # https://devguide.python.org/versions/
35+
requires-python = ">=3.10" # https://devguide.python.org/versions/
3636
classifiers = [
3737
"Programming Language :: Python",
3838
"Programming Language :: Python :: 3",
39-
"Programming Language :: Python :: 3.9",
4039
"Programming Language :: Python :: 3.10",
4140
"Programming Language :: Python :: 3.11",
4241
"Programming Language :: Python :: 3.12",
43-
"Programming Language :: Python :: 3.13"
42+
"Programming Language :: Python :: 3.13",
43+
"Programming Language :: Python :: 3.14"
4444
]
4545
dependencies = [
4646
"appdirs",

0 commit comments

Comments
 (0)