Skip to content

Commit

Permalink
enabled pypy3 in the tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Oct 4, 2024
1 parent 9972243 commit 2e35156
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
timeout-minutes: 4
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12'] # Maybe soon?, '3.13']
python-version: ['pypy3', '3.9', '3.10', '3.11', '3.12'] # Maybe soon?, '3.13']

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pythonVersion = '3.9'
[tool.mypy]
strict = true
check_untyped_defs = true
files = ['python_utils', '_python_utils_tests', 'setup.py']

[[tool.mypy.overrides]]
module = '_python_utils_tests.*'
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = ruff, black, py39, py310, py311, py312, py313, docs, mypy, pyright
envlist = ruff, black, pypy3, py39, py310, py311, py312, py313, docs, mypy, pyright
skip_missing_interpreters = True

[testenv]
Expand All @@ -9,6 +9,7 @@ basepython =
py311: python3.11
py312: python3.12
py313: python3.13
pypy3: pypy3

setenv = PY_IGNORE_IMPORTMISMATCH=1
deps =
Expand Down

0 comments on commit 2e35156

Please sign in to comment.