changeset 490cca3d9699 in modules/analytic_sale:default
details:
https://hg.tryton.org/modules/analytic_sale?cmd=changeset;node=490cca3d9699
description:
Drop support of python 3.4
issue8203
review279171002
diffstat:
.drone.yml | 6 ------
setup.py | 4 ++--
tox.ini | 6 +++---
3 files changed, 5 insertions(+), 11 deletions(-)
diffs (56 lines):
diff -r d4719bec7b54 -r 490cca3d9699 .drone.yml
--- a/.drone.yml Sat Apr 06 17:38:55 2019 +0200
+++ b/.drone.yml Sun Apr 07 19:50:02 2019 +0200
@@ -25,12 +25,6 @@
matrix:
include:
- - IMAGE: python:3.4
- TOXENV: py34
- DATABASE: sqlite
- - IMAGE: python:3.4
- TOXENV: py34
- DATABASE: postgresql
- IMAGE: python:3.5
TOXENV: py35
DATABASE: sqlite
diff -r d4719bec7b54 -r 490cca3d9699 setup.py
--- a/setup.py Sat Apr 06 17:38:55 2019 +0200
+++ b/setup.py Sun Apr 07 19:50:02 2019 +0200
@@ -105,7 +105,7 @@
'Natural Language :: Slovenian',
'Natural Language :: Spanish',
'Operating System :: OS Independent',
- 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
@@ -115,7 +115,7 @@
'Topic :: Office/Business :: Financial :: Accounting',
],
license='GPL-3',
- python_requires='>=3.4',
+ python_requires='>=3.5',
install_requires=requires,
dependency_links=dependency_links,
zip_safe=False,
diff -r d4719bec7b54 -r 490cca3d9699 tox.ini
--- a/tox.ini Sat Apr 06 17:38:55 2019 +0200
+++ b/tox.ini Sun Apr 07 19:50:02 2019 +0200
@@ -1,12 +1,12 @@
[tox]
-envlist = {py34,py35,py36,py37}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
+envlist = {py35,py36,py37}-{sqlite,postgresql},pypy3-{sqlite,postgresql}
[testenv]
commands = {envpython} setup.py test
deps =
- {py34,py35,py36,py37}-postgresql: psycopg2 >= 2.5
+ {py35,py36,py37}-postgresql: psycopg2 >= 2.5
pypy3-postgresql: psycopg2cffi >= 2.5
- {py34,py35,py36}-sqlite: sqlitebck
+ {py35,py36}-sqlite: sqlitebck
setenv =
sqlite: TRYTOND_DATABASE_URI={env:SQLITE_URI:sqlite://}
postgresql: TRYTOND_DATABASE_URI={env:POSTGRESQL_URI:postgresql://}