Skip to content

Commit

Permalink
removing py3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lnxpy committed Nov 18, 2024
1 parent 34d9469 commit 0ccf2b0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install uv
uses: astral-sh/setup-uv@v3

- name: Install tox
run: pip install tox
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Run tox
run: tox -e py
run: uvx tox -e py
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -30,7 +29,7 @@ classifiers = [
pyaction = "pyaction.cli:cli"

[project.optional-dependencies]
dev = ["coverage", "pytest-cookies", "tox"]
dev = ["coverage", "pytest-cookies"]
docs = ["mkdocs-material", "cairosvg", "pillow"]
cli = ["copier ~= 9.2", "click ~= 8.1", "python-dotenv ~= 1.0.1"]

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]
env_list = py3{8,9,10,11,12}
env_list = py3{9,10,11,12,13}
pre-commit
skipsdist = true
skip_install = true
Expand Down

0 comments on commit 0ccf2b0

Please sign in to comment.