-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from nimasmi/chore/python-3-12
Chore/Python 3.12
- Loading branch information
Showing
3 changed files
with
62 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ name: CI tests | |
on: [push] | ||
|
||
env: | ||
poetry-version: 1.2.0 | ||
poetry-version: 1.8.2 | ||
|
||
jobs: | ||
lint: | ||
|
@@ -20,61 +20,85 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
django-version: ["3.2.9", "4.1.3", "4.2"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
django-version: ["3.2.9", "4.1.3", "4.2", "5.0.2"] | ||
exclude: | ||
- django-version: "3.2" | ||
# Django too old | ||
- django-version: "3.2.9" | ||
python-version: "3.11" | ||
- django-version: "3.2.9" | ||
python-version: "3.12" | ||
|
||
# Django too new | ||
- django-version: "5.0.2" | ||
python-version: "3.8" | ||
- django-version: "5.0.2" | ||
python-version: "3.9" | ||
- django-version: "5.0.2" | ||
python-version: "3.10" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/actions-poetry@v2 | ||
with: | ||
poetry-version: ${{ env.poetry-version }} | ||
- name: Cache Poetry virtual env | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-poetry-virtualenv | ||
with: | ||
path: .venv | ||
key: ${{ runner.os }}-python-${{ matrix.python-version }}-django-${{ matrix.django-version }}-${{ hashFiles('pyproject.toml') }} | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ env.poetry-version }} | ||
- name: Install Python packages | ||
- name: Install packages | ||
run: | | ||
poetry config virtualenvs.in-project true | ||
poetry remove django | ||
poetry add django==${{ matrix.django-version }} --python ${{ matrix.python-version }} | ||
poetry install | ||
poetry add django==${{ matrix.django-version }} | ||
poetry show django | ||
test: | ||
runs-on: ubuntu-latest | ||
needs: [build, lint] | ||
strategy: | ||
matrix: | ||
python-version: ["3.8", "3.9", "3.10", "3.11"] | ||
django-version: ["3.2.9", "4.1.3", "4.2"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
django-version: ["3.2.9", "4.1.3", "4.2", "5.0.2"] | ||
exclude: | ||
- django-version: "3.2" | ||
# Django too old | ||
- django-version: "3.2.9" | ||
python-version: "3.11" | ||
- django-version: "3.2.9" | ||
python-version: "3.12" | ||
|
||
# Django too new | ||
- django-version: "5.0.2" | ||
python-version: "3.8" | ||
- django-version: "5.0.2" | ||
python-version: "3.9" | ||
- django-version: "5.0.2" | ||
python-version: "3.10" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ env.poetry-version }} | ||
- name: Cache Poetry virtual env | ||
uses: actions/cache@v2 | ||
env: | ||
cache-name: cache-poetry-virtualenv | ||
with: | ||
path: .venv | ||
key: ${{ runner.os }}-python-${{ matrix.python-version }}-django-${{ matrix.django-version }}-${{ hashFiles('pyproject.toml') }} | ||
- name: Run image | ||
uses: abatilo/[email protected] | ||
with: | ||
poetry-version: ${{ env.poetry-version }} | ||
- name: Test | ||
run: | | ||
poetry run python -m django --version | ||
poetry run python runtests.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters