Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change owslib version to >=0.25.0 #2

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
tests:
strategy:
matrix:
python: ["3.5", "3.6", "3.8"]
runs-on: ubuntu-20.04
python: ["3.10"]
runs-on: ubuntu-22.04
container: "python:${{matrix.python}}-slim-buster"
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -82,7 +82,8 @@ jobs:
python-version: "3.5"

- name: Install GDAL
run: sudo apt-get install -y gdal-bin
run: sudo apt-get update && sudo apt-get install -y gdal-bin

if: ${{ matrix.toxenv == 'sanitizer' }}

- name: Install Tox and tox-gh-actions
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ drf-jwt-2fa
lxml

# WFS
owslib
owslib==0.25.0

# Misc
django-cors-headers
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ djangorestframework-jwt==1.11.0 # via drf-jwt-2fa
drf-jwt-2fa==0.3.0
idna==2.10 # via requests
lxml==4.5.2
owslib==0.19.1
owslib==0.25.0
psycopg2==2.8.5
pyjwt==1.7.1 # via djangorestframework-jwt
pyproj==2.6.1.post1 # via owslib
python-dateutil==2.8.1 # via owslib
python-memcached==1.59
pytz==2020.1
pyyaml==5.3.1 # via database-sanitizer, django-sanitized-dump
pyproj==3.3.0 # via owslib
pyyaml==5.4.1 # via database-sanitizer, django-sanitized-dump, ows
raven==6.10.0
requests==2.24.0 # via owslib
six==1.15.0 # via database-sanitizer, django-sanitized-dump, python-dateutil, python-memcached
Expand Down
Loading