We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c09d185 commit 27c5d3dCopy full SHA for 27c5d3d
.github/workflows/ci.yml
@@ -14,10 +14,10 @@ jobs:
14
name: "Python ${{ matrix.python-version }} on Ubuntu"
15
runs-on: "ubuntu-latest"
16
env:
17
- USING_COVERAGE: '3.7,3.8,3.9'
+ USING_COVERAGE: "3.7,3.8,3.9,3.10"
18
strategy:
19
matrix:
20
- python-version: [ "3.7", "3.8", "3.9" ]
+ python-version: [ "3.7", "3.8", "3.9", "3.10" ]
21
22
steps:
23
- uses: "actions/checkout@v3"
README.md
@@ -1,14 +1,16 @@
1

2
-[](https://codecov.io/gh/101Loop/drf-user)
3
-[](https://lgtm.com/projects/g/101Loop/drf-user/alerts/)
4
-[](https://lgtm.com/projects/g/101Loop/drf-user/context:python)
+[](https://pepy.tech/project/drf-user)
+[](https://pepy.tech/project/drf-user)
5
[](https://github.com/psf/black)
6
[](https://results.pre-commit.ci/latest/github/101Loop/drf-user/master)
7
[](https://drf-user.readthedocs.io/en/latest/?badge=latest)
8
[](https://github.com/101loop/drf-user)
9
10
# Django REST Framework - User
11
+> One of the winners of [PyCharm Project of the Decade Competition](https://www.jetbrains.com/lp/pycharm-10-years/)
12
+
13
---
**User APP for Django REST Framework with API Views.**<br>
docs/index.rst
@@ -22,6 +22,11 @@ Welcome to drf-user's documentation!
User APP for Django REST Framework with API Views.
24
25
+.. note::
26
27
+ One of the winners of `PyCharm Project of the Decade Competition <(https://www.jetbrains.com/lp/pycharm-10-years/>`__
28
29
30
========
31
Overview
32
setup.py
@@ -23,9 +23,9 @@
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
- "Framework :: Django :: 2.2",
- "Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
+ "Framework :: Django :: 4.0",
+ "Framework :: Django :: 4.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
@@ -34,6 +34,7 @@
34
"Programming Language :: Python :: 3.7",
35
"Programming Language :: Python :: 3.8",
36
"Programming Language :: Python :: 3.9",
37
+ "Programming Language :: Python :: 3.10",
38
"Topic :: Software Development :: Libraries",
39
"Topic :: Internet :: WWW/HTTP",
40
],
tox.ini
@@ -4,21 +4,21 @@
# and then run "tox" from this directory.
[tox]
-envlist = py{37,38,39}-django{22}-drf{310,311,312}
- py{37,38,39}-django{31,32}-drf{311,312,master}
+envlist = py{37,38,39,310}-django{32}-drf{312,313,314}
+ py{38,39,310}-django{40,41}-drf{312,313,314,master}
[testenv]
commands =
make install-quite
pip freeze
make check
deps =
- django22: Django>=2.2,<2.3
- django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
- drf310: djangorestframework>=3.10,<3.11
- drf311: djangorestframework>=3.11,<3.12
+ django40: Django>=4.0,<4.1
+ django41: Django>=4.1,<4.2
drf312: djangorestframework>=3.12,<3.13
+ drf313: djangorestframework>=3.13,<3.14
+ drf314: djangorestframework>=3.14,<3.15
drfmaster: https://github.com/encode/django-rest-framework/archive/master.tar.gz
whitelist_externals =
make
@@ -28,3 +28,4 @@ python =
3.7: py37
3.8: py38
3.9: py39
+ 3.10: py310
0 commit comments