changeset 21b17941ef5a in modules/attendance:default
details:
https://hg.tryton.org/modules/attendance?cmd=changeset;node=21b17941ef5a
description:
Remove support for Python 3.5
issue9733
diffstat:
.drone.yml | 6 ------
setup.py | 3 +--
tox.ini | 6 +++---
3 files changed, 4 insertions(+), 11 deletions(-)
diffs (55 lines):
diff -r 710e6b005398 -r 21b17941ef5a .drone.yml
--- a/.drone.yml Fri Oct 16 19:19:57 2020 +0200
+++ b/.drone.yml Sat Oct 24 13:45:10 2020 +0200
@@ -32,12 +32,6 @@
matrix:
include:
- - IMAGE: python:3.5
- TOXENV: py35
- DATABASE: sqlite
- - IMAGE: python:3.5
- TOXENV: py35
- DATABASE: postgresql
- IMAGE: python:3.6
TOXENV: py36
DATABASE: sqlite
diff -r 710e6b005398 -r 21b17941ef5a setup.py
--- a/setup.py Fri Oct 16 19:19:57 2020 +0200
+++ b/setup.py Sat Oct 24 13:45:10 2020 +0200
@@ -121,7 +121,6 @@
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
@@ -130,7 +129,7 @@
'Topic :: Office/Business',
],
license='GPL-3',
- python_requires='>=3.5',
+ python_requires='>=3.6',
install_requires=requires,
extras_require={
'timezone': ['pytz'],
diff -r 710e6b005398 -r 21b17941ef5a tox.ini
--- a/tox.ini Fri Oct 16 19:19:57 2020 +0200
+++ b/tox.ini Sat Oct 24 13:45:10 2020 +0200
@@ -1,12 +1,12 @@
[tox]
-envlist = {py35,py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
+envlist = {py36,py37,py38}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
[testenv]
commands = {envpython} setup.py test
deps =
- {py35,py36,py37,py38}-postgresql: psycopg2 >= 2.5
+ {py36,py37,py38}-postgresql: psycopg2 >= 2.5
pypy3-postgresql: psycopg2cffi >= 2.5
- {py35,py36}-sqlite: sqlitebck
+ py36-sqlite: sqlitebck
setenv =
sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}