From ae95c8a4358e9b30c55d6fdf36742066823f7730 Mon Sep 17 00:00:00 2001 From: Pingu Carsti Date: Mon, 30 Oct 2023 14:18:54 +0100 Subject: [PATCH] skip py37 --- .github/workflows/main.yml | 10 ++++------ setup.py | 3 +-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 57260b852..a386a4249 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,8 +12,6 @@ jobs: strategy: matrix: include: - - tox-env: py37-extra - python-version: "3.7" - tox-env: py38-extra python-version: "3.8" - tox-env: py39-extra @@ -36,13 +34,13 @@ jobs: run: | pip install flake8 flake8 pywps - if: matrix.python-version == 3.7 + if: matrix.python-version == 3.8 - name: Install tox 📦 run: pip install "tox>=4.0" - name: Run tests with tox ⚙️ run: tox -e ${{ matrix.tox-env }} - name: Run coveralls ⚙️ - if: matrix.python-version == 3.7 + if: matrix.python-version == 3.8 uses: AndreMiras/coveralls-python-action@develop docs: @@ -50,9 +48,9 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 - name: Setup Python 3.7 + name: Setup Python 3.8 with: - python-version: 3.7 + python-version: 3.8 - name: Build docs 🏗️ run: | pip install -e .[dev] diff --git a/setup.py b/setup.py index 3ee5f13bb..63dc553b9 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,6 @@ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -62,7 +61,7 @@ "extras_require": dict( dev=DEV_REQUIRES, ), - "python_requires": ">=3.7,<4", + "python_requires": ">=3.8,<4", "packages": find_packages(exclude=["docs", "tests.*", "tests"]), "include_package_data": True, "scripts": [],