Skip to content

Commit 53b0c81

Browse files
authored
fix tests (#687)
* skip py37
1 parent d285c58 commit 53b0c81

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ jobs:
1212
strategy:
1313
matrix:
1414
include:
15-
- tox-env: py37-extra
16-
python-version: "3.7"
1715
- tox-env: py38-extra
1816
python-version: "3.8"
1917
- tox-env: py39-extra
@@ -36,23 +34,23 @@ jobs:
3634
run: |
3735
pip install flake8
3836
flake8 pywps
39-
if: matrix.python-version == 3.7
37+
if: matrix.python-version == 3.8
4038
- name: Install tox 📦
4139
run: pip install "tox>=4.0"
4240
- name: Run tests with tox ⚙️
4341
run: tox -e ${{ matrix.tox-env }}
4442
- name: Run coveralls ⚙️
45-
if: matrix.python-version == 3.7
43+
if: matrix.python-version == 3.8
4644
uses: AndreMiras/coveralls-python-action@develop
4745

4846
docs:
4947
runs-on: ubuntu-latest
5048
steps:
5149
- uses: actions/checkout@v3
5250
- uses: actions/setup-python@v4
53-
name: Setup Python 3.7
51+
name: Setup Python 3.8
5452
with:
55-
python-version: 3.7
53+
python-version: 3.8
5654
- name: Build docs 🏗️
5755
run: |
5856
pip install -e .[dev]

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"Operating System :: OS Independent",
5252
"Programming Language :: Python",
5353
"Programming Language :: Python :: 3",
54-
"Programming Language :: Python :: 3.7",
5554
"Programming Language :: Python :: 3.8",
5655
"Programming Language :: Python :: 3.9",
5756
"Programming Language :: Python :: 3.10",
@@ -62,7 +61,7 @@
6261
"extras_require": dict(
6362
dev=DEV_REQUIRES,
6463
),
65-
"python_requires": ">=3.7,<4",
64+
"python_requires": ">=3.8,<4",
6665
"packages": find_packages(exclude=["docs", "tests.*", "tests"]),
6766
"include_package_data": True,
6867
"scripts": [],

0 commit comments

Comments
 (0)