diff options
| author | Hugo <hugovk@users.noreply.github.com> | 2017-11-02 11:06:15 +0200 |
|---|---|---|
| committer | INADA Naoki <methane@users.noreply.github.com> | 2017-11-02 18:06:15 +0900 |
| commit | 3a098851bea500ef1ffde856a60d80ddab230dee (patch) | |
| tree | 33d1515ac249dee1edbeaab1f97c37f7bd5780c9 /appveyor.yml | |
| parent | 1985eb7618296e6a93c8abc4a697c7b00fda72f8 (diff) | |
| download | msgpack-python-3a098851bea500ef1ffde856a60d80ddab230dee.tar.gz | |
Remove code and tests for unsupported Python 3.3 and 3.4 (#249)
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/appveyor.yml b/appveyor.yml index e63423d..d581839 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,24 +23,19 @@ build: off test_script: # Put your test command here. - # If you don't need to build C extensions on 64-bit Python 3.3 or 3.4, - # you can remove "build.cmd" from the front of the command, as it's - # only needed to support those cases. # Note that you must use the environment variable %PYTHON% to refer to # the interpreter you're using - Appveyor does not do anything special # to put the Python version you want to use on PATH. - - "build.cmd %PYTHON%\\python.exe setup.py build_ext -i" - - "build.cmd %PYTHON%\\python.exe setup.py install" + - "%PYTHON%\\python.exe setup.py build_ext -i" + - "%PYTHON%\\python.exe setup.py install" - "%PYTHON%\\python.exe -c \"import sys; print(hex(sys.maxsize))\"" - "%PYTHON%\\python.exe -c \"from msgpack import _packer, _unpacker\"" - "%PYTHON%\\Scripts\\py.test test" - - "build.cmd %PYTHON%\\python.exe setup.py bdist_wheel" + - "%PYTHON%\\python.exe setup.py bdist_wheel" after_test: # This step builds your wheels. - # Again, you only need build.cmd if you're building C extensions for - # 64-bit Python 3.3/3.4. And you need to use %PYTHON% to get the correct - # interpreter + # Again, you need to use %PYTHON% to get the correct interpreter artifacts: # bdist_wheel puts your built wheel in the dist directory |
