-
Notifications
You must be signed in to change notification settings - Fork 1.1k
[Fixies #12540] PyCSW upgrade to version 3 #13112
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1362454
PyCSW3 upgrade
Gpetrak 1816f4a
requirements.txt update
Gpetrak 1534c9d
setup.cfg update
Gpetrak 0970676
fixing typos
Gpetrak 529271e
update requirements.txt and setup.cfg
Gpetrak 086f324
partial commit from 6a0f59170
Gpetrak e8e2da4
update a test
Gpetrak c0f64bd
update a test
Gpetrak 857abd0
Adapting a catalogue/tests/<test> to PyCSW3
Gpetrak ea90bea
update pycsw mapping and fixing a structure bug on the csw endpoint
Gpetrak 0c2d96d
black format
Gpetrak 0d45395
fixing a bug on opensearch_dispatch
Gpetrak 7c8b6e4
updating pycsw_local_mappings and requirements.txt
Gpetrak d63346b
Merge branch 'master' into ISSUE_12540
Gpetrak 4a49d9e
leaving pycsw:Metadata as is for now
Gpetrak 35cc7bf
Merge branch 'ISSUE_12540' of https://github.com/GeoNode/geonode into…
Gpetrak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,13 +46,14 @@ oauthlib==3.2.2 | |
pyjwt==2.8.0 | ||
|
||
# geopython dependencies | ||
git+https://github.com/geopython/[email protected]#egg=pycsw | ||
pyproj<3.7.0 | ||
OWSLib==0.31.0 | ||
pycsw==2.6.1 | ||
SQLAlchemy==2.0.30 # required by PyCSW | ||
Shapely==1.8.5.post1 | ||
mercantile==1.2.1 | ||
numpy==1.26.* | ||
Jinja2==3.1.4 | ||
|
||
# # Apps with packages provided in GeoNode's PPA on Launchpad. | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,11 +74,12 @@ install_requires = | |
# geopython dependencies | ||
pyproj<3.7.0 | ||
OWSLib==0.31.0 | ||
pycsw==2.6.1 | ||
pycsw @ git+https://github.com/geopython/[email protected]#egg=pycsw | ||
SQLAlchemy==2.0.30 # required by PyCSW | ||
Shapely==1.8.5.post1 | ||
mercantile==1.2.1 | ||
numpy==1.26.* | ||
Jinja2==3.1.4 | ||
|
||
# # Apps with packages provided in GeoNode's PPA on Launchpad. | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should probably be
metadata_xml
since in pycsw doc:pycsw:XML
: full XML representation (deprecated; will be removed in a future release)pycsw:Metadata
: full metadata representationThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As we discussed, I left it as it for now