-
Notifications
You must be signed in to change notification settings - Fork 6
Updated fbf packages #58
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
Changes from all commits
79466b0
7b2003a
72540b6
eb35c67
6d9dd73
e5a7d4f
52a39d9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,30 @@ channels: | |
- conda-forge | ||
- defaults | ||
dependencies: | ||
|
||
# rasterio build fails with python 3.10 | ||
# https://github.com/rasterio/rasterio/issues/2333 | ||
- python=3.9 | ||
- cftime | ||
- dash | ||
- flask | ||
- numpy | ||
- opencv | ||
- pandas | ||
|
||
# Newer versions of Pandas do not appear to work correctly with queuepool. | ||
# In particular, how that package forms SQL query objects needs to be updated. | ||
# Hopefully the solution here is to either send Igor a issue or to migrate to | ||
# a different connection pooling library | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. More precisely, new versions of The solution appears to be to use psycopg2 via SQLAlchemy rather than directly. I think that's a good move regardless; it's the community standard. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And once we have SQLAlchemy as a dependency, there's no cost to also using its QueuePool instead of queuepool, which should solve the problem of applications hanging when the database server restarts. |
||
- pandas=1.3 | ||
- psycopg2 | ||
- rasterio | ||
- shapely | ||
|
||
# Shapely changed how looping over geometries works in the newer version and | ||
# Pingrid relies on the old functionality. It is unclear to me whether using | ||
# the .geoms property has the same behavior as the "built in" iterator the | ||
# old version had. As we may migrate way from Pingrid and we're not going to | ||
# upgrade it right now and possibly waste the work or effort. | ||
- shapely=1.7 | ||
- xarray | ||
- yaml | ||
- zarr | ||
|
Uh oh!
There was an error while loading. Please reload this page.