Skip to content

Add Python 3.12 support #211

Add Python 3.12 support

Add Python 3.12 support #211

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
linters:
runs-on: ubuntu-22.04
strategy:
matrix:
lint-command:
- ruff --format=github .
- black --check --diff .
- mypy model_bakery
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: pip
- run: python -m pip install .[test]
- run: ${{ matrix.lint-command }}
tests:
name: Python ${{ matrix.python-version }}
needs:
- linters
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
env:
PGUSER: postgres
PGPASSWORD: postgres
services:
postgis:
image: postgis/postgis
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v3
- name: Set up PostgreSQL
run: |
sudo apt-get update
sudo apt-get install -y gdal-bin
psql template1 -c "CREATE EXTENSION citext;" -U postgres -h localhost -p 5432
psql template1 -c "CREATE EXTENSION hstore;" -U postgres -h localhost -p 5432
psql template1 -c "CREATE EXTENSION postgis;" -U postgres -h localhost -p 5432
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel tox
- name: Run tox targets for ${{ matrix.python-version }}
run: tox run -f py$(echo ${{ matrix.python-version }} | tr -d .)