From e6c100bcbddbfbcb413a084c6eabe619216f6a1e Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Sun, 3 Dec 2017 11:39:09 -0500 Subject: [PATCH 1/8] Removed Python 2.6 DEPRECATION: Python 2.6 is no longer supported by the Python core team --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 517dbc3f..642e846b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26,py27,pypy,py33,py34,py35,py36 +envlist = py27,pypy,py33,py34,py35,py36 [testenv] deps = From ca55f885685a9fea32a5435d81a87ae80fc639d2 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Mon, 4 Dec 2017 10:59:52 -0500 Subject: [PATCH 2/8] removed python 2.6 --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index c01b0798..0b798041 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,6 @@ cache: pip matrix: include: - - python: 2.6 - env: TOXENV=py26 - python: 2.7 env: TOXENV=py27 - python: 3.3 From 0b5c850f8908fdd89472ac83a32a9ae45b3b9416 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Mon, 4 Dec 2017 11:00:31 -0500 Subject: [PATCH 3/8] removed python 2.6 --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 479ff04f..c5742f58 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,6 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", From fe471253a15749d482a1a66e5aa4c07923fecec6 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Mon, 4 Dec 2017 11:00:59 -0500 Subject: [PATCH 4/8] removed python 2.6 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 067c6bc3..e9f3cccb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,7 +22,7 @@ #define=YAML_DECLARE_STATIC # The following options are used to build PyYAML Windows installer -# for Python 2.6, 2.7, 3.0, 3.1 and 3.2 on my PC: +# for Python 2.7, 3.0, 3.1 and 3.2 on my PC: #include_dirs=../../../libyaml/tags/0.1.4/include #library_dirs=../../../libyaml/tags/0.1.4/win32/vs2008/output/release/lib #define=YAML_DECLARE_STATIC From 7c56e1c9bdae4b0265a3205289a0d97d9ce3336c Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Fri, 8 Dec 2017 10:54:08 -0500 Subject: [PATCH 5/8] added `python_requires` --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index c5742f58..9f3bd973 100644 --- a/setup.py +++ b/setup.py @@ -293,4 +293,5 @@ def run(self): distclass=Distribution, cmdclass=cmdclass, + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', ) From 27ad57c2c0e57bb927ed979e35386986e3732138 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Fri, 8 Dec 2017 11:01:32 -0500 Subject: [PATCH 6/8] removed python 3.3 --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0b798041..c9078114 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,6 @@ matrix: include: - python: 2.7 env: TOXENV=py27 - - python: 3.3 - env: TOXENV=py33 - python: 3.4 env: TOXENV=py34 - python: 3.5 From 0dc2292ecae30585d5d65d90e9e61645b9ad1c07 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Fri, 8 Dec 2017 11:03:32 -0500 Subject: [PATCH 7/8] removed deprecated/EoL python versions --- setup.cfg | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/setup.cfg b/setup.cfg index e9f3cccb..9f332977 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,14 +16,7 @@ #define=YAML_DECLARE_STATIC # The following options are used to build PyYAML Windows installer -# for Python 2.5 on my PC: -#include_dirs=../../../libyaml/tags/0.1.4/include -#library_dirs=../../../libyaml/tags/0.1.4/win32/vs2003/output/release/lib -#define=YAML_DECLARE_STATIC - -# The following options are used to build PyYAML Windows installer -# for Python 2.7, 3.0, 3.1 and 3.2 on my PC: +# for Python 2.7 on my PC: #include_dirs=../../../libyaml/tags/0.1.4/include #library_dirs=../../../libyaml/tags/0.1.4/win32/vs2008/output/release/lib #define=YAML_DECLARE_STATIC - From 4180a96f15e4b2d3ae74b04324779a7a5852a5f9 Mon Sep 17 00:00:00 2001 From: "Nicholas Nadeau, P.Eng., AVS" Date: Fri, 8 Dec 2017 11:04:28 -0500 Subject: [PATCH 8/8] removed python 3.3 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 642e846b..b358ce9d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,pypy,py33,py34,py35,py36 +envlist = py27,pypy,py34,py35,py36 [testenv] deps =