Skip to content

Commit

Permalink
Merge pull request #44 from bird-house/update-pywps
Browse files Browse the repository at this point in the history
update pywps 4.5
  • Loading branch information
cehbrecht authored Dec 23, 2021
2 parents 605698e + 4eaa4be commit 7ee6c48
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 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 @@ -3,10 +3,10 @@ channels:
#- defaults
- conda-forge
dependencies:
- python=3.6
- pip
- python>=3.7,<3.10
# pywps
- pywps=4.4
- 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
pywps>=4.5.1
jinja2
click
psutil
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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, 'hummingbird', '__version__.py'), 'r') as f:
Expand All @@ -32,9 +32,9 @@
'Programming Language :: Python',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Atmospheric Science',
'License :: OSI Approved :: Apache Software License',
]
Expand Down

0 comments on commit 7ee6c48

Please sign in to comment.