-
Notifications
You must be signed in to change notification settings - Fork 15
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
Allow pystac 1.1.0 #20
Allow pystac 1.1.0 #20
Conversation
setup.py
Outdated
@@ -7,7 +7,7 @@ | |||
|
|||
inst_reqs = [ | |||
"rasterio", | |||
"pystac>=1.0.0,<1.1.0", | |||
"pystac>=1.0.0", |
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.
let's restrict from 1.x
to 2.x
https://github.com/stac-utils/pystac#versions
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.
we can't allow pystac version >1 or it will break everything as soon as pystac 2.0 is released
Good point. Happy with <2.0.0? |
@alexgleith thanks 🙏 FYI, I'm going to merge this and release it when tests ✅. I'll also update the changelog. |
Simple as this, allow PySTAC 1.1.0. There are no significant differences between 1.0.0 and 1.1.0, as far as I know, and we're having build dependency problems because of this constraint.