Skip to content

Commit 29e534d

Browse files
committed
ci: remove support for Python 3.9
1 parent a8bdb60 commit 29e534d

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/tox_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest, macos-latest, windows-2019]
9-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
9+
python-version: ['3.10', '3.11', '3.12', '3.13']
1010
frontend: ["", "PySide6"]
1111
fail-fast: false
1212
name: Python ${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.frontend }} build

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ maintainers = [
88
authors = [
99
{name="University Library at The University of Illinois at Urbana Champaign: Preservation Services", email="prescons@library.illinois.edu"}
1010
]
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
license = "NCSA"
1313
license-files = ["LICENSE"]
1414
dependencies =[
@@ -23,7 +23,7 @@ classifiers = [
2323
"Development Status :: 4 - Beta",
2424
"Intended Audience :: End Users/Desktop",
2525
"Natural Language :: English",
26-
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
2727
"Operating System :: MacOS",
2828
"Operating System :: Microsoft :: Windows",
2929
"Operating System :: POSIX :: Linux",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{39,310,311,312,313}-{PySide6,cli}
2+
envlist = py{310,311,312,313}-{PySide6,cli}
33
isolated_build = true
44

55
[tool:pytest]

vars/runJenkinsPipeline.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ def call(){
735735
axes: [
736736
[
737737
name: 'PYTHON_VERSION',
738-
values: ['3.9', '3.10', '3.11', '3.12', '3.13']
738+
values: ['3.10', '3.11', '3.12', '3.13']
739739
],
740740
[
741741
name: 'OS',

0 commit comments

Comments
 (0)