Skip to content

Commit 8c35267

Browse files
author
Hongbin Huang
committed
Add support for python 3.11
1 parent 609f619 commit 8c35267

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
### Easy and Fast Django REST framework based on Django-Ninja-Extra
1212

13-
- CRUD API Generation: Automatic and configurable, inspired by [NextJs-Crud](https://github.com/nestjsx/crud).
13+
- Zero code for a full CRUD API: Automatic and configurable, inspired by [NextJs-Crud](https://github.com/nestjsx/crud).
1414
- Async CRUD API with Django RBAC security protection
1515
- Prefetch and retrieve all m2m fields if configured
1616
- Recursively retrieve all FK/OneToOne fields if configured
@@ -92,7 +92,7 @@ https://github.com/freemindcore/django-easy-api
9292

9393
### More Configuration
9494
If `CRUD_API_ENABLED_ALL_APPS` is set to True (default), all app models CRUD apis will be generated.
95-
Apps in the `CRUD_API_EXCLUDE_APPS` list, will be always excluded.
95+
Apps in the `CRUD_API_EXCLUDE_APPS` list, will always be excluded.
9696

9797
If `CRUD_API_ENABLED_ALL_APPS` is set to False, only apps in the `CRUD_API_INCLUDE_APPS` list will have CRUD apis generated.
9898

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727
"Programming Language :: Python :: 3.8",
2828
"Programming Language :: Python :: 3.9",
2929
"Programming Language :: Python :: 3.10",
30+
"Programming Language :: Python :: 3.11",
3031
"Programming Language :: Python :: 3 :: Only",
3132
"Framework :: Django",
3233
"Framework :: Django :: 3.1",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ max-line-length = 88
6262
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,venv
6363

6464
[mypy]
65-
python_version = 3.8
65+
python_version = 3.11
6666
ignore_missing_imports = True
6767
warn_unused_configs = True
6868
plugins = mypy_django_plugin.main

0 commit comments

Comments
 (0)