diff options
author | Santos Gallegos <santos_g@outlook.com> | 2019-07-26 21:14:32 -0500 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2019-07-29 08:17:42 +0800 |
commit | 80204335d827eb9ed4861e16634822bf9aa60912 (patch) | |
tree | f06c6ec606cc7338a7a9257bf673a2cc885d0d93 | |
parent | 859ad046aecc077b9118f0a1c2896e3f9237cd75 (diff) | |
download | gitpython-80204335d827eb9ed4861e16634822bf9aa60912.tar.gz |
Remove python 2 from CI
Python 2 support was dropped, there is not need to run tests in py2
-rw-r--r-- | .appveyor.yml | 9 | ||||
-rw-r--r-- | test-requirements.txt | 1 | ||||
-rw-r--r-- | tox.ini | 2 |
3 files changed, 1 insertions, 11 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 017cf120..2658d96e 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,9 +5,6 @@ environment: CYGWIN64_GIT_PATH: "C:\\cygwin64\\bin;%GIT_DAEMON_PATH%" matrix: - - PYTHON: "C:\\Python27" - PYTHON_VERSION: "2.7" - GIT_PATH: "%GIT_DAEMON_PATH%" - PYTHON: "C:\\Python34-x64" PYTHON_VERSION: "3.4" GIT_PATH: "%GIT_DAEMON_PATH%" @@ -26,12 +23,6 @@ environment: MAYFAIL: "yes" GIT_PATH: "%GIT_DAEMON_PATH%" ## Cygwin - - PYTHON: "C:\\Miniconda-x64" - PYTHON_VERSION: "2.7" - IS_CONDA: "yes" - IS_CYGWIN: "yes" - MAYFAIL: "yes" - GIT_PATH: "%CYGWIN_GIT_PATH%" - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5" IS_CYGWIN: "yes" diff --git a/test-requirements.txt b/test-requirements.txt index ec0e4c56..ec2912ba 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -3,4 +3,3 @@ coverage flake8 nose tox -mock; python_version=='2.7' @@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,py35,py36,py37,flake8 +envlist = py34,py35,py36,py37,flake8 [testenv] commands = nosetests {posargs} |