Skip to content

Commit d44ab5b

Browse files
committed
python 3.13
1 parent a74d3f8 commit d44ab5b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/python-lints.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- name: Set up Python 3.12
15+
- name: Set up Python
1616
uses: actions/setup-python@v4
1717
with:
18-
python-version: 3.12
18+
python-version: 3.13
1919
- name: Set up poetry
2020
uses: abatilo/actions-poetry@v2
2121
with:

.github/workflows/python-tox.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: [3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v4
@@ -24,5 +24,7 @@ jobs:
2424
uses: abatilo/actions-poetry@v2
2525
with:
2626
poetry-version: 1.8.3
27+
- name: Install tox
28+
run: pipx install tox
2729
- name: Test with tox
2830
run: tox

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flake8-import-restrictions"
3-
version = "2.1"
3+
version = "2.2.0"
44
description = "A flake8 plugin used to disallow certain forms of imports."
55
authors = ["Andreas Tollkötter"]
66
homepage = "https://github.com/atollk/flake8-import-restrictions"
@@ -11,7 +11,7 @@ license = "MIT"
1111
classifiers = ["Framework :: Flake8", "Intended Audience :: Developers"]
1212

1313
[tool.poetry.dependencies]
14-
python = ">=3.8.1,<3.13"
14+
python = ">=3.9,<3.14"
1515
flake8 = "^7.0.0"
1616

1717
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)