Skip to content

Commit

Permalink
Merge pull request #57 from aj-white/54-add-python3.13
Browse files Browse the repository at this point in the history
♻ add python 3.13 support
  • Loading branch information
aj-white authored Oct 9, 2024
2 parents 87ee04c + 7067d14 commit 44d93b1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [main]

env:
default-python: "3.11"
default-python: "3.12"

jobs:
lint:
Expand All @@ -31,12 +31,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import nox

PYTHON_VERSIONS = ["3.12", "3.11", "3.10", "3.9"]
PYTHON_DEFAULT_VERSION = "3.11"
PYTHON_VERSIONS = ["3.13", "3.12", "3.11", "3.10", "3.9"]
PYTHON_DEFAULT_VERSION = "3.12"
nox.options.reuse_existing_virtualenvs = True
nox.options.sessions = (
"tests",
Expand Down
7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
Expand All @@ -42,12 +43,8 @@ Source = "https://github.com/aj-white/piplexed"
[tool.hatch.version]
path = "src/piplexed/version.py"

[tool.black]
target-version = ["py311"]
line-length = 120

[tool.ruff]
target-version = "py311"
target-version = "py312"
line-length = 120

[tool.ruff.lint]
Expand Down

0 comments on commit 44d93b1

Please sign in to comment.