Skip to content

Commit f17fd77

Browse files
Merge pull request #60 from UIUCLibrary/dev
ci: remove support for Python 3.9
2 parents 6f4f530 + 480fa9b commit f17fd77

File tree

5 files changed

+42
-268
lines changed

5 files changed

+42
-268
lines changed

.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]
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
fail-fast: false
1111
name: Python ${{ matrix.python-version }} ${{ matrix.os }} build
1212
steps:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies = [
1010
'uiucprescon.getmarc2>=0.1.3',
1111
'typing-extensions;python_version<"3.8"'
1212
]
13-
requires-python = ">= 3.9"
13+
requires-python = ">= 3.10"
1414
readme = "README.rst"
1515
license = "NCSA"
1616
authors = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py39, py310, py311, py312, py313
2+
envlist = py310, py311, py312, py313
33
isolated_build = true
44
minversion = 2.0
55

0 commit comments

Comments
 (0)