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

[Feature #9147] updates pycsw to 3.0.x #10380

Draft
wants to merge 1 commit into
base: 4.0.x
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 7 additions & 1 deletion geonode/catalogue/backends/pycsw_local_mappings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,11 @@
'pycsw:Contributor': 'contributor',
'pycsw:Relation': 'relation',
'pycsw:Links': 'download_links',
}
"pycsw:Edition": "edition",
"pycsw:Platform": "platform",
"pycsw:Instrument": "instrument",
"pycsw:SensorType": "sensor_type",
"pycsw:CloudCover": "cloud_cover",
"pycsw:Bands": "bands",
},
}
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ pyjwt==2.6.0
# geopython dependencies
pyproj<3.5.0
OWSLib==0.27.2
pycsw==2.6.1
#TODO below: change to stable pycsw=3.x once released
git+https://github.com/geopython/pycsw.git@master
SQLAlchemy==1.4.45 # required by PyCSW
Shapely==1.8.5.post1
mercantile==1.2.1
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,11 @@ install_requires =
# geopython dependencies
pyproj<3.5.0
OWSLib==0.27.2
pycsw==2.6.1
#TODO below: change to stable pycsw=3.x once released
pycsw @ git+https://github.com/geopython/pycsw.git@master
SQLAlchemy==1.4.45 # required by PyCSW
Shapely==1.8.5.post1

mercantile==1.2.1
geoip2==4.6.0
numpy==1.23.*
Expand Down