Skip to content

Commit

Permalink
build: remove 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 b87b8df commit 7ce31bb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,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
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "HathiZip"
version = "0.1.12.dev0"
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.rst"
license = {text = "University of Illinois/NCSA Open Source License"}
authors = [
Expand All @@ -16,7 +16,6 @@ maintainers = [
]
description = "Creates .zip file packages for HathiTrust. Replacement script for HathiTrust Zip and Submit."
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
"Topic :: System :: Archiving :: Packaging",
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,312}
envlist = py{39,310,311,312}
isolated_build = true

[pytest]
Expand Down

0 comments on commit 7ce31bb

Please sign in to comment.