Skip to content

Commit be70d0c

Browse files
authored
Merge pull request #374 from peopledoc/python37-38-support
Added Python 3.7 & 3.8 compatibility
2 parents 00fbc7f + b9c0f9f commit be70d0c

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ master (unreleased)
66
===================
77

88
- Add support to Django 2.2 (#326).
9+
- Add support to Python 3.7 & 3.8.
910

1011
Release 3.2.0 (2019-11-07)
1112
==========================

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edit, delete and use forms.
1313
Warnings
1414
========
1515

16-
* Python Compatibility : Python 2.7 (for Django 1.11 only), 3.5, 3.6
16+
* Python Compatibility : Python 2.7 (for Django 1.11 only), 3.5, 3.6, 3.7, 3.8
1717
* Django compatibility : Django 1.11, 2.2.
1818
* Django REST Framework : Compatible from the version 3.8.x to 3.10.x
1919

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
'Programming Language :: Python :: 3',
4343
'Programming Language :: Python :: 3.5',
4444
'Programming Language :: Python :: 3.6',
45+
'Programming Language :: Python :: 3.7',
46+
'Programming Language :: Python :: 3.8',
4547
'Topic :: Internet :: WWW/HTTP',
4648
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4749
],

tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
django111-py{27,35,36}-drf{38,39,310}-{sqlite,pg}
4-
django22-py{35,36}-drf{39,310}-{sqlite,pg}
3+
django111-py{27,35,36,37,38}-drf{38,39,310}-{sqlite,pg}
4+
django22-py{35,36,37,38}-drf{39,310}-{sqlite,pg}
55
spectest
66
flake8
77
isort-check
@@ -19,7 +19,7 @@ deps =
1919
django22: Django>=2.2,<2.3
2020
; Python versions
2121
py27: django-perf-rec>=3,<4
22-
py{35,36}: django-perf-rec
22+
py{35,36,37,38}: django-perf-rec
2323
; DRF versions
2424
drf38: djangorestframework<3.9
2525
drf39: djangorestframework<3.10

0 commit comments

Comments
 (0)