Skip to content

Commit

Permalink
Support Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
NellyWhads committed Apr 11, 2024
1 parent 39432e7 commit 59a96dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
strategy:
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ authors = [
readme = "README.md"
license = {file = "LICENSE"}
urls = {repo = "https://github.com/mam-dev/pytest-litter"}
requires-python = ">=3.9"
requires-python = ">=3.8"
dependencies = ["pytest >= 6.1"]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
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 = py39,py310,py311,py312
envlist = py38,py39,py310,py311,py312
isolated_build = True
minversion = 4.0.0

Expand Down

0 comments on commit 59a96dc

Please sign in to comment.