Skip to content

Commit 3a09885

Browse files
hugovkmethane
authored andcommitted
Remove code and tests for unsupported Python 3.3 and 3.4 (#249)
1 parent 1985eb7 commit 3a09885

File tree

5 files changed

+6
-34
lines changed

5 files changed

+6
-34
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ cache: pip
44

55
python:
66
- "2.7"
7-
- "3.3"
8-
- "3.4"
97
- "3.5"
108
- "3.6"
119
- "3.7-dev"

appveyor.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,19 @@ build: off
2323

2424
test_script:
2525
# Put your test command here.
26-
# If you don't need to build C extensions on 64-bit Python 3.3 or 3.4,
27-
# you can remove "build.cmd" from the front of the command, as it's
28-
# only needed to support those cases.
2926
# Note that you must use the environment variable %PYTHON% to refer to
3027
# the interpreter you're using - Appveyor does not do anything special
3128
# to put the Python version you want to use on PATH.
32-
- "build.cmd %PYTHON%\\python.exe setup.py build_ext -i"
33-
- "build.cmd %PYTHON%\\python.exe setup.py install"
29+
- "%PYTHON%\\python.exe setup.py build_ext -i"
30+
- "%PYTHON%\\python.exe setup.py install"
3431
- "%PYTHON%\\python.exe -c \"import sys; print(hex(sys.maxsize))\""
3532
- "%PYTHON%\\python.exe -c \"from msgpack import _packer, _unpacker\""
3633
- "%PYTHON%\\Scripts\\py.test test"
37-
- "build.cmd %PYTHON%\\python.exe setup.py bdist_wheel"
34+
- "%PYTHON%\\python.exe setup.py bdist_wheel"
3835

3936
after_test:
4037
# This step builds your wheels.
41-
# Again, you only need build.cmd if you're building C extensions for
42-
# 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct
43-
# interpreter
38+
# Again, you need to use %PYTHON% to get the correct interpreter
4439

4540
artifacts:
4641
# bdist_wheel puts your built wheel in the dist directory

build.cmd

Lines changed: 0 additions & 21 deletions
This file was deleted.

docker/runtests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e -x
33

4-
for V in cp36-cp36m cp35-cp35m cp34-cp34m cp27-cp27m cp27-cp27mu; do
4+
for V in cp36-cp36m cp35-cp35m cp27-cp27m cp27-cp27mu; do
55
PYBIN=/opt/python/$V/bin
66
$PYBIN/python setup.py install
77
rm -rf build/ # Avoid lib build by narrow Python is used by wide python

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {py27,py33,py34,py35,py36}-{c,pure},{pypy,pypy3}-pure,py27-x86,py34-x86
2+
envlist = {py27,py35,py36}-{c,pure},{pypy,pypy3}-pure,py27-x86,py34-x86
33

44
[variants:pure]
55
setenv=

0 commit comments

Comments
 (0)