From bae95015a482686b2f0e955858d5add2582601d8 Mon Sep 17 00:00:00 2001 From: MacPingu Date: Mon, 20 Dec 2021 16:35:38 +0100 Subject: [PATCH] update to pywps >4.5.1 (#116) * update to pywps >4.5.1 * update required python Co-authored-by: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> --- .github/workflows/main.yml | 12 ++++++------ environment.yml | 4 ++-- requirements.txt | 2 +- setup.py | 3 +-- 4 files changed, 10 insertions(+), 11 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 990e2e9..d79afbd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: [3.7, 3.8, 3.9] steps: - name: Checkout repository and submodules uses: actions/checkout@v2 @@ -31,15 +31,15 @@ jobs: run: make test - name: Lint with flake8 ⚙️ run: make lint - if: matrix.python-version == 3.6 + if: matrix.python-version == 3.7 # - name: Check formatting with black ⚙️ - # run: black --check --target-version py36 birdy tests - # if: matrix.python-version == 3.6 + # run: black --check --target-version py37 birdy tests + # if: matrix.python-version == 3.7 - name: Build docs 🏗️ run: make docs - if: matrix.python-version == 3.6 + if: matrix.python-version == 3.7 # - name: Run smoke tests ⚙️ # run: | # export PYWPS_CFG=$PWD/etc/smoke-pywps.cfg # make smoke - # if: matrix.python-version == 3.6 + # if: matrix.python-version == 3.7 diff --git a/environment.yml b/environment.yml index 0c98fa0..f44db79 100644 --- a/environment.yml +++ b/environment.yml @@ -4,8 +4,8 @@ channels: - defaults dependencies: - pip -- python>=3.6 -- pywps>=4.4.5,<4.5 +- python>=3.7,<3.10 +- pywps>=4.5.1,<4.6 - jinja2 - click - psutil diff --git a/requirements.txt b/requirements.txt index e8fddab..59bc20a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pywps>=4.4.5 +pywps>=4.5.1 jinja2 click psutil diff --git a/setup.py b/setup.py index fd7f4c0..bdf1f8d 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read() CHANGES = open(os.path.join(here, 'CHANGES.rst')).read() -REQUIRES_PYTHON = ">=3.6.0" +REQUIRES_PYTHON = ">=3.7.0" about = {} with open(os.path.join(here, 'emu', '__version__.py'), 'r') as f: @@ -29,7 +29,6 @@ 'Programming Language :: Python', 'Natural Language :: English', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',