Skip to content

Commit

Permalink
Merge pull request #18 from johnfraney/update-python-versions
Browse files Browse the repository at this point in the history
chore: update supported Python versions
  • Loading branch information
johnfraney authored Dec 4, 2024
2 parents d6f37e1 + 69f4414 commit ff15c1a
Show file tree
Hide file tree
Showing 5 changed files with 44 additions and 55 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/github-actions-nox.yml

This file was deleted.

25 changes: 25 additions & 0 deletions .github/workflows/github-actions-tox.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Tox
on: push

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry tox
- name: Run Tox
run: |
tox run -e ${{ matrix.python-version }}
45 changes: 17 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
include = ["LICENSE"]

[tool.poetry.dependencies]
python = ">=3.8"
python = ">=3.9"
flake8 = ">=5.0.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
isolated_build = True
envlist = py38, py39, py310, py311
envlist = py39, py310, py311, py312, py313
skip_missing_interpreters = true

[tox:.package]
Expand Down

0 comments on commit ff15c1a

Please sign in to comment.