Skip to content

Commit

Permalink
fix tests (#687)
Browse files Browse the repository at this point in the history

* skip py37
  • Loading branch information
cehbrecht committed Nov 1, 2023
1 parent d285c58 commit 53b0c81
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -36,23 +34,23 @@ 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:
runs-on: ubuntu-latest
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]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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": [],
Expand Down

0 comments on commit 53b0c81

Please sign in to comment.