From 7ae3908c5d8f120879dde3592c3f887610a33156 Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 2 Oct 2020 00:27:28 +0200 Subject: [PATCH] Remove support for EOL Python 3.5 --- .github/workflows/ci.yml | 31 ------------------------------- setup.cfg | 1 - 2 files changed, 32 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d143bbed72..34222a5ee6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -182,37 +182,6 @@ jobs: run: cmake --build . --config ${{ matrix.config }} --parallel 4 # END A - - name: Setup Python (Python 3.5) - if: contains(matrix.python, 'YES') - uses: actions/setup-python@v1 - with: - python-version: 3.5 - - name: Configure (Python 3.5) - if: contains(matrix.python, 'YES') - working-directory: build - shell: bash - run: > - cmake -DWANT_PYTHON_VERSION=3.5 - -DPython_FIND_REGISTRY=NEVER -DPython_ROOT=$pythonLocation . - - name: Build (Python 3.5) - if: contains(matrix.python, 'YES') - # BEGIN A - working-directory: build - run: cmake --build . --config ${{ matrix.config }} --parallel 4 - # END A - - name: Test (Python 3.5) - # BEGIN B - if: contains(matrix.python, 'YES') - working-directory: build - shell: bash - env: - PYTHONPATH: ${{ matrix.config }} - run: | - PYTHON_EXECUTABLE=$(grep 'Python_EXECUTABLE:' CMakeCache.txt | sed 's/.*=//') - $PYTHON_EXECUTABLE -m pip install pytest - $PYTHON_EXECUTABLE -m pytest ../tests - # END B - - name: Setup Python (Python 3.6) if: contains(matrix.python, 'YES') uses: actions/setup-python@v1 diff --git a/setup.cfg b/setup.cfg index 282448f7bb..5ec78283ad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,6 @@ classifiers = Programming Language :: C++ Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8