Skip to content
Open
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
77 changes: 46 additions & 31 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,18 @@ jobs:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
django: ["3.2.16", "4.0.8", "4.1.4" ]
django: ["3.2.16", "4.0.8", "4.1.4", "5.0.1"]
exclude:
# Excludes Python 3.11 for Django < 4.1
- python: "3.11"
django: "3.2.16"
- python: "3.11"
django: "4.0.8"
# Excludes Python 3.11 for Django < 4.1
- python: "3.11"
django: "3.2.16"
- python: "3.11"
django: "4.0.8"
# Django 5.0 requires Python 3.10 or higher
- python: "3.8"
django: "5.0.1"
- python: "3.9"
django: "5.0.1"

services:
postgres:
Expand Down Expand Up @@ -54,40 +59,50 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- uses: pre-commit/action@v3.0.0

publish:
if: startsWith(github.event.ref, 'refs/tags')
name: publish
needs: pytest
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/django-reactive
permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing
contents: write # IMPORTANT: mandatory for making GitHub Releases

steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
architecture: x64
- run: pip install --upgrade pip
- run: pip install poetry
- run: poetry build
- uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.pypi_password_test }}
repository_url: https://test.pypi.org/legacy/
- uses: pypa/gh-action-pypi-publish@master
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry build
- name: Publish to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
- uses: actions/create-release@v1
repository-url: https://test.pypi.org/legacy/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
- name: Create GitHub Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
Changes:
- ...
- ...
draft: true
prerelease: false
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release create "$GITHUB_REF_NAME" \
--repo "$GITHUB_REPOSITORY" \
--title "$GITHUB_REF_NAME" \
--notes "Release $GITHUB_REF_NAME"
- name: Upload artifacts to release
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
gh release upload "$GITHUB_REF_NAME" dist/* \
--repo "$GITHUB_REPOSITORY"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ keywords = ["django",

[tool.poetry.dependencies]
python = ">=3.8.1,<4"
jsonschema = "^3.0||^4.0"
psycopg2-binary = "^2.7||^3.0"
django = "^3.2||^4.0"
jsonschema = ">=3.0,<5"
psycopg2-binary = ">=2.7,<4"
django = ">=3.2"


[tool.poetry.dev-dependencies]
Expand Down