diff options
| author | Sebastian Thiel <sebastian.thiel@icloud.com> | 2021-06-16 10:58:09 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-16 10:58:09 +0800 |
| commit | cefc0df04440215dad825e109807aecf39d6180b (patch) | |
| tree | 619f69dfeff694643a0ca940961d8baf5bb95eaf /.appveyor.yml | |
| parent | 617c09e70bfd54af1c88b4d2c892b8d287747542 (diff) | |
| parent | 45d1cd59d39227ee6841042eab85116a59a26d22 (diff) | |
| download | gitpython-cefc0df04440215dad825e109807aecf39d6180b.tar.gz | |
Merge pull request #1201 from bertwesarg/remove-py35
DNM before 2021-09-05: Remove support for Python 3.5
Diffstat (limited to '.appveyor.yml')
| -rw-r--r-- | .appveyor.yml | 29 |
1 files changed, 2 insertions, 27 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 0a86c1a7..833f5c7b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -6,29 +6,12 @@ environment: CYGWIN64_GIT_PATH: "C:\\cygwin64\\bin;%GIT_DAEMON_PATH%" matrix: - - PYTHON: "C:\\Python34-x64" - PYTHON_VERSION: "3.4" - GIT_PATH: "%GIT_DAEMON_PATH%" - - PYTHON: "C:\\Python35-x64" - PYTHON_VERSION: "3.5" - GIT_PATH: "%GIT_DAEMON_PATH%" - PYTHON: "C:\\Python36-x64" PYTHON_VERSION: "3.6" GIT_PATH: "%GIT_DAEMON_PATH%" - PYTHON: "C:\\Python37-x64" PYTHON_VERSION: "3.7" GIT_PATH: "%GIT_DAEMON_PATH%" - - PYTHON: "C:\\Miniconda35-x64" - PYTHON_VERSION: "3.5" - IS_CONDA: "yes" - MAYFAIL: "yes" - GIT_PATH: "%GIT_DAEMON_PATH%" - ## Cygwin - - PYTHON: "C:\\Python35-x64" - PYTHON_VERSION: "3.5" - IS_CYGWIN: "yes" - MAYFAIL: "yes" - GIT_PATH: "%CYGWIN64_GIT_PATH%" matrix: allow_failures: @@ -76,18 +59,10 @@ install: build: false test_script: - - IF "%IS_CYGWIN%" == "yes" ( - nosetests -v - ) ELSE ( - IF "%PYTHON_VERSION%" == "3.5" ( - nosetests -v --with-coverage - ) ELSE ( - nosetests -v - ) - ) + - nosetests -v on_success: - - IF "%PYTHON_VERSION%" == "3.5" IF NOT "%IS_CYGWIN%" == "yes" (codecov) + - IF "%PYTHON_VERSION%" == "3.6" IF NOT "%IS_CYGWIN%" == "yes" (codecov) # Enable this to be able to login to the build worker. You can use the # `remmina` program in Ubuntu, use the login information that the line below |
