Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub Actions: Test PyPy 3.10 #1054

Merged
merged 2 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "pypy-3.8"
- "pypy-3.9"
- "pypy-3.10"
database-type:
- "sqlite"
- "postgres"
Expand All @@ -42,10 +42,10 @@ jobs:
POSTGRES_PASSWORD: password

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 }}
cache: pip
Expand Down
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ envlist =
docs
examples
linkcheck
py{38,39,310,311,py38,py39}-sqlite
py{38,39,310,311,py38,py39}-django32-mongo-alchemy-{sqlite,postgres}
py{38,39,310,311,py38,py39}-django40-mongo-alchemy-{sqlite,postgres}
py{38,39,310,311,py38,py39}-django41-mongo-alchemy-{sqlite,postgres}
py{38,39,310,311,py39,py310}-sqlite
py{38,39,310,311,py39,py310}-django32-mongo-alchemy-{sqlite,postgres}
py{38,39,310,311,py39,py310}-django40-mongo-alchemy-{sqlite,postgres}
py{38,39,310,311,py39,py310}-django41-mongo-alchemy-{sqlite,postgres}
py310-djangomain-mongo-alchemy-{sqlite,postgres}

[gh-actions]
Expand All @@ -18,8 +18,8 @@ python =
3.10: py310
3.11: py311
3.12: py312
pypy-3.8: pypy38
pypy-3.9: pypy39
pypy-3.10: pypy310

[gh-actions:env]
DATABASE_TYPE =
Expand All @@ -39,10 +39,10 @@ deps =
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0b1,<5.1
django50: Django>=5.0,<5.1
djangomain: https://github.com/django/django/archive/main.tar.gz
py{38,39,310,311}-postgres: psycopg2-binary
pypy{38,39}-postgres: psycopg2cffi
pypy{39,310}-postgres: psycopg2cffi

setenv =
py: DJANGO_SETTINGS_MODULE=tests.djapp.settings
Expand Down