Skip to content

Commit

Permalink
update to pywps >4.5.1 (#116)
Browse files Browse the repository at this point in the history
* update to pywps >4.5.1

* update required python

Co-authored-by: Trevor James Smith <[email protected]>
  • Loading branch information
cehbrecht and Zeitsperre authored Dec 20, 2021
1 parent 01b0fe1 commit bae9501
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pywps>=4.4.5
pywps>=4.5.1
jinja2
click
psutil
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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',
Expand Down

0 comments on commit bae9501

Please sign in to comment.