Skip to content

Commit

Permalink
build: drop support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
henryborchers committed Oct 31, 2024
1 parent a05ccd1 commit 603bcc4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-2019]
python-version: ['3.8' ,'3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
frontend: ["", "PySide6"]
fail-fast: false
name: Python ${{ matrix.python-version }} ${{ matrix.os }} ${{ matrix.frontend }} build
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ pipeline {
axes {
axis {
name 'PYTHON_VERSION'
values '3.8', '3.9', '3.10', '3.11', '3.12'
values '3.9', '3.10', '3.11', '3.12'
}
axis {
name 'OS'
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ maintainers = [
authors = [
{name="University Library at The University of Illinois at Urbana Champaign: Preservation Services", email="prescons@library.illinois.edu"}
]
requires-python = ">=3.8"
requires-python = ">=3.9"
license = { file="LICENSE"}
dependencies =[
"HathiZip>=0.1.10",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311}-{PySide6,cli}
envlist = py{39,310,311}-{PySide6,cli}
isolated_build = true

[tool:pytest]
Expand Down

0 comments on commit 603bcc4

Please sign in to comment.