]> git.phdru.name Git - ppu.git/commitdiff
Drop support for Python 3.3
authorOleg Broytman <phd@phdru.name>
Tue, 21 Aug 2018 16:54:46 +0000 (19:54 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 21 Aug 2018 18:06:48 +0000 (21:06 +0300)
.travis.yml
appveyor.yml
devscripts/requirements/requirements_tests.txt
docs/news.rst
setup.py
tox.ini

index 75d4038c477451bdf43953f7f527377dad642a6e..d08dcc29d098a96b8eaa8bf8f37d1030a57e7092 100644 (file)
@@ -20,8 +20,6 @@ matrix:
   include:
   - python: "2.7"
     env: TOXENV=py27
-  - python: "3.3"
-    env: TOXENV=py33
   - python: "3.4"
     env: TOXENV=py34
   - python: "3.5"
@@ -34,7 +32,7 @@ matrix:
     env: TOXENV=py34-flake8
 
 install:
-  - travis_retry pip install --upgrade pip setuptools "tox <= 2.9.1"
+  - travis_retry pip install --upgrade pip setuptools tox
 
 script:
   - tox
index 509c25c5431c77a9b9b112db9cea59235c2bd746..102b7c4f899decbb720c543f65d88d5c5a4585ea 100644 (file)
@@ -22,10 +22,6 @@ environment:
       PYTHON_VERSION: "2.7"
       PYTHON_ARCH: "32"
       PYTHON_HOME: "C:\\Python27"
-    - TOXENV: "py33"
-      PYTHON_VERSION: "3.3"
-      PYTHON_ARCH: "64"
-      PYTHON_HOME: "C:\\Python33-x64"
     - TOXENV: "py36"
       PYTHON_VERSION: "3.6"
       PYTHON_ARCH: "32"
@@ -50,7 +46,7 @@ install:
   - "python --version"
   - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
   - "python -m pip install --upgrade pip setuptools"
-  - "pip install --upgrade \"tox <= 2.9.1\""
+  - "pip install --upgrade tox"
   - "pip --version"
 
 # No build step - we don't have C extensions
index 9d52e695be1cb23ec8760372140e64731e084db4..8e890d819b41b5fc02a1412a619883d51d7ae6bc 100644 (file)
@@ -1,4 +1,4 @@
 -r requirements.txt
 
-pytest < 3.3
+pytest
 pytest-cov
index fc2aaea7fd30b22246b2ce542c9ecfb0a065924d..99586c7bc87db18f8cc81e053e9453fecea37c0e 100644 (file)
@@ -1,6 +1,11 @@
 News
 ====
 
+Version 0.7.0 (2018-??-??)
+--------------------------
+
+* Drop support for Python 3.3.
+
 Version 0.6.1 (2017-12-15)
 --------------------------
 
index 2da5c795b4f5687ca921490f79eb48ed55b5bc1c..dd7d8635d430cb5ec74518725a31b06b55143537 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -38,7 +38,6 @@ setup(
         'Programming Language :: Python :: 2',
         'Programming Language :: Python :: 2.7',
         'Programming Language :: Python :: 3',
-        'Programming Language :: Python :: 3.3',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
@@ -48,5 +47,5 @@ setup(
         'scripts/cmp.py', 'scripts/remove-old-files.py', 'scripts/rm.py',
         'scripts/which.py',
     ],
-    python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
+    python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
 )
diff --git a/tox.ini b/tox.ini
index 45c75b46577bdeb9ad3636e03287e0c2ae76f12c..e38a2e520d5738744f3ab89ea3bae9caf9ae2430 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,12 +1,11 @@
 [tox]
 minversion = 1.8
-envlist = py{27,33,34,35,36,37}, pypy, py{27,34}-flake8
+envlist = py{27,34,35,36,37}, pypy, py{27,34}-flake8
 
 # Base test environment settings
 [testenv]
 basepython =
     py27: {env:TOXPYTHON:python2.7}
-    py33: {env:TOXPYTHON:python3.3}
     py34: {env:TOXPYTHON:python3.4}
     py35: {env:TOXPYTHON:python3.5}
     py36: {env:TOXPYTHON:python3.6}
@@ -27,11 +26,6 @@ commands =
     {[testenv]commands}
     {[general]commands}
 
-[testenv:py33]
-commands =
-    {[testenv]commands}
-    {[general]commands}
-
 [testenv:py34]
 commands =
     {[testenv]commands}