Skip to content

Commit

Permalink
build: add support for Python 3.9-3.10 and Django 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RevolutionTech committed Feb 7, 2022
1 parent e225098 commit 1fbe539
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
needs: checks
strategy:
matrix:
python-version: [3.7, 3.8]
django-version: [2.2.8, 3.0, 3.1]
python-version: ["3.7", "3.8", "3.9", "3.10"]
django-version: ["2.2.8", "3.0", "3.1", "3.2"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion docs/about.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ django-conditions is a Django app that allows creation of conditional logic in a
- In a game, define the winning objectives of a mission/quest
- and many more...

django-conditions supports Django 2.2-3.1 and Python 3.7-3.8.
django-conditions supports Django 2.2-3.2 and Python 3.7-3.10.
48 changes: 27 additions & 21 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
Expand All @@ -23,7 +24,7 @@ classifiers = [

[tool.poetry.dependencies]
python = "^3.7"
Django = ">= 2.2, < 3.2a0"
Django = ">= 2.2, < 4.0a0"
django-jsonfield = "^1.1"

[tool.poetry.dev-dependencies]
Expand Down
1 change: 1 addition & 0 deletions runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

if __name__ == "__main__":
settings.configure(
SECRET_KEY="y*8i&l0^b)%l4ymt631e69=78!4uh!=iity6e-c%m2n&2aepxr",
DATABASES={
"default": {
"NAME": ":memory:",
Expand Down

0 comments on commit 1fbe539

Please sign in to comment.