Skip to content

Commit

Permalink
django 5.0 support (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
xncbf authored Jan 28, 2024
1 parent 7cc49d7 commit c1220af
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
max-parallel: 8
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

name: ${{ matrix.experimental && 'Django master [ok to fail]' || format('Python {0}', matrix.python-version) }}
steps:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ Enter the django official command createcachetable and get started easily.
## Why should I use this?

- There are few management points, because dynamodb is a fully managed service.
- Data is safely stored unlike inmemory db.
- Because you only pay for what you use, it saves money on light projects such as side projects or back offices.
- If you need more performance, you can easily switch to DAX.

Expand Down
9 changes: 3 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,14 @@ description = ""
authors = ["xncbf <xncbf12@gmail.com>"]
keywords = ["django", "dynamodb", "cache", "django cache backend"]
classifiers = [
"Framework :: Django :: 3",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"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",
]
homepage = "https://github.com/xncbf/django-dynamodb-cache"
repository = "https://github.com/xncbf/django-dynamodb-cache"
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
isolated_build = True
envlist =
py{38,39}-dj{30,31,32,40,41},
py310-dj{32,40,41},
py311-dj{41},
py310-dj{32,40,41,42,50},
py311-dj{41,42,50},
py312-dj{42,50},
skipsdist = true


Expand All @@ -19,6 +20,7 @@ python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

[testenv]
allowlist_externals = poetry
Expand All @@ -31,6 +33,8 @@ deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0a,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
dj50: Django>=5.0,<5.1
djmaster: git+https://github.com/django/django
pytest
pytest-cov
Expand Down

0 comments on commit c1220af

Please sign in to comment.