Skip to content

Bump version: 4.0.1 → 5.0.0 #140

Bump version: 4.0.1 → 5.0.0

Bump version: 4.0.1 → 5.0.0 #140

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
django:
- "3.2"
- "4.0"
- "4.1"
- "4.2"
- "5.0"
exclude:
- python-version: "3.8"
django: "5.0"
- python-version: "3.9"
django: "5.0"
- python-version: "3.11"
django: "3.2"
- python-version: "3.11"
django: "4.0"
- python-version: "3.12"
django: "3.2"
- python-version: "3.12"
django: "4.0"
- python-version: "3.12"
django: "4.1"
# Service containers to run with `runner-job`
services:
# Label used to access the service container
postgres:
# Docker Hub image
image: postgres:16-alpine
# Provide the password for postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
# Set health checks to wait until postgres has started
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
# Maps tcp port 5432 on service container to the host
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Update pip
run: python -m pip install --upgrade pip
- name: Install Django 3.2
if: matrix.django == 3.2
run: pip install "Django>=3.2,<4.0" psycopg2==2.9.9
- name: Install Django 4.0
if: matrix.django == 4.0
run: pip install "Django>=4.0,<4.1" psycopg2==2.9.9
- name: Install Django 4.1
if: matrix.django == 4.1
run: pip install "Django>=4.1,<4.2" psycopg2==2.9.9
- name: Install Django 4.2
if: matrix.django == 4.2
run: pip install "Django>=4.2,<5.0" psycopg==3.1.18
- name: Install Django 5.0
if: matrix.django == 5.0
run: pip install "Django>=5.0,<5.1" psycopg==3.1.18
- name: Install requirements
run: pip install -r requirements-ci.txt
- name: Install package
run: pip install -e .
- name: Run tests
run: python manage.py test
publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install req packages
run: python -m pip install -U setuptools wheel
- name: Build a binary wheel and a source tarball
run: python setup.py sdist bdist_wheel
- name: Publish Package on PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}