changeset 4f565dac4912 in modules/carrier:default
details: https://hg.tryton.org/modules/carrier?cmd=changeset;node=4f565dac4912
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 3941908b868f -r 4f565dac4912 .drone.yml
--- a/.drone.yml        Sat Apr 06 17:38:55 2019 +0200
+++ b/.drone.yml        Sun Apr 07 19:50:03 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 3941908b868f -r 4f565dac4912 setup.py
--- a/setup.py  Sat Apr 06 17:38:55 2019 +0200
+++ b/setup.py  Sun Apr 07 19:50:03 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',
@@ -114,7 +114,7 @@
         'Topic :: Office/Business',
         ],
     license='GPL-3',
-    python_requires='>=3.4',
+    python_requires='>=3.5',
     install_requires=requires,
     dependency_links=dependency_links,
     zip_safe=False,
diff -r 3941908b868f -r 4f565dac4912 tox.ini
--- a/tox.ini   Sat Apr 06 17:38:55 2019 +0200
+++ b/tox.ini   Sun Apr 07 19:50:03 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://}

Reply via email to