Skip to content

Commit

Permalink
Merge pull request #341 from ckan/fix-tests
Browse files Browse the repository at this point in the history
Fix requirements versions
  • Loading branch information
amercader authored Nov 7, 2024
2 parents 8a00a2b + 0fa3713 commit 5be0224
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
include:
- ckan-version: "2.11"
ckan-image: "ckan/ckan-dev:2.11-py3.10"
solr-image: "2.10-solr9-spatial"
solr-image: "2.11-solr9-spatial"
harvester-version: 'master'
- ckan-version: "2.10"
ckan-image: "ckan/ckan-dev:2.10-py3.10"
Expand Down
1 change: 0 additions & 1 deletion ckanext/spatial/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
from pprint import pprint

from ckan import model
from ckan.model.package_extra import PackageExtra

try:
from ckanext.spatial.lib.reports import validation_report
Expand Down
7 changes: 5 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@ argparse
pyparsing>=2.1.10
requests>=1.1.0
cython==0.29.36; python_version < '3.9'

pyproj==2.6.1; python_version < '3.9'
pyproj==3.6.1; python_version >= '3.9'

Shapely==2.0.4
OWSLib==0.31.0
OWSLib==0.31.0; python_version < '3.10'
OWSLib==0.32.0; python_version >= '3.10'

Shapely==2.0.6
geojson==3.1.0

0 comments on commit 5be0224

Please sign in to comment.