Skip to content

Commit 93b7f78

Browse files
authored
Merge pull request #406 from peopledoc/drop-python3.5-support
Dropped support for Python 3.5
2 parents 0cd6cc1 + 0b3d043 commit 93b7f78

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ jobs:
2222
docs:
2323
working_directory: ~/django-formidable
2424
docker:
25-
- image: circleci/node:lts
25+
- image: circleci/node:lts-buster
2626
steps:
2727
- checkout
2828
- run:
2929
name: Check Python version & install Python dependencies
3030
command: |
31-
python --version
31+
python3 --version
3232
sudo apt update && sudo apt install python-pip python-dev
3333
- run:
3434
name: Run Sphinx doc tests using tox

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ ChangeLog
55
master (unreleased)
66
===================
77

8+
- Drop support for Python 3.5 (EOL: 2020-09-13).
89
- Fix defaults on readonly fields during validation from schema
910
- Fix default values for readonly date fields.
1011
- Improve default values for readonly fields.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edit, delete and use forms.
1313
Warnings
1414
========
1515

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

docs/source/deprecations.rst

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Deprecation timeline
33
====================
44

5+
From 5.0.0 to 6.0.0
6+
===================
7+
8+
Python versions
9+
---------------
10+
11+
.. deprecated:: 6.0.0
12+
13+
Drop support for Python 3.5
14+
515
From 4.0.1 to 5.0.0
616
===================
717

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
author='Guillaume Camera, Guillaume Gérard',
2121
author_email='[email protected], '
2222
23+
python_requires=">=3.6",
2324
install_requires=[
2425
'Django',
2526
'djangorestframework<4.0.0',
@@ -34,7 +35,6 @@
3435
'Operating System :: OS Independent',
3536
'Programming Language :: Python',
3637
'Programming Language :: Python :: 3',
37-
'Programming Language :: Python :: 3.5',
3838
'Programming Language :: Python :: 3.6',
3939
'Programming Language :: Python :: 3.7',
4040
'Programming Language :: Python :: 3.8',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
django22-py{35,36,37,38}-drf{39,310}-{sqlite,pg}
3+
django22-py{36,37,38}-drf{39,310}-{sqlite,pg}
44
spectest
55
flake8
66
isort-check

0 commit comments

Comments
 (0)