Skip to content

Commit 2066066

Browse files
authored
Add Python 3.13 to test matrix (#477)
* Add Python 3.13 to test matrix * Ignore ruff error
1 parent 4de9a50 commit 2066066

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest # [macos-latest, windows-latest]
2121
strategy:
2222
matrix:
23-
python-version: ["3.9", "3.10", "3.11", "3.12", "pypy-3.9"]
23+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "pypy-3.9"]
2424
name: Python ${{ matrix.python-version }} Test
2525
steps:
2626
- uses: actions/checkout@v4

src/fake_useragent/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
if sys.version_info >= (3, 10):
99
import importlib.resources as ilr
1010
else:
11-
import importlib_resources as ilr
11+
import importlib_resources as ilr # noqa: F401
1212

1313
from pathlib import Path
1414

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py3{9,10,11,12}
3+
py3{9,10,11,12,13}
44
pypy3
55
isolated_build = True
66
skip_missing_interpreters = True

0 commit comments

Comments
 (0)