Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
pfouque committed Oct 17, 2023
1 parent fc1f2a9 commit b5e1b7f
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: poetry

- name: Install requirements
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true

- name: Set up Python 3.10
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: poetry

- name: Build project
Expand Down
20 changes: 17 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,23 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.1", "4.2"]
anymail-version: ["9.0", "9.1", "9.2"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: ["3.2", "4.1", "4.2", "5.0a1"]
anymail-version: ["9.0", "9.1", "9.2", "10.0", "10.1"]
exclude:
# excludes invalid combinations
- django-version: "3.2"
python-version: "3.11"
- django-version: "3.2"
python-version: "3.12"
- django-version: "4.1"
python-version: "3.12"
- django-version: "4.2"
python-version: "3.12"
- django-version: "5.0a1"
python-version: "3.8"
- django-version: "5.0a1"
python-version: "3.9"

steps:
- name: Check out the repository
Expand Down
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,23 @@ classifiers = [
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.1",
# "Framework :: Django :: 5.0",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{ include = "anymail_history" }]

[tool.poetry.dependencies]
python = "^3.8"
django = "^3.2 || ^4.0 || ^4.1 || ^4.2"
django-anymail = "^8.6 || ^9.0"
python = "^3.8 || ^3.10"
django = "^3.2 || ^4.0 || ^4.1 || ^4.2 || ^5.0a1"
django-anymail = "^9.0 || ^10.0"

[tool.poetry.group.dev.dependencies]
black = "*"
Expand Down

0 comments on commit b5e1b7f

Please sign in to comment.