spacepy / dbprocessing

Automated processing controller for heliophysics data
5 stars 4 forks source link

Update postgresql dialect name in CreateDBsabrs #73

Closed jtniehof closed 3 years ago

jtniehof commented 3 years ago

SQLAlchemy quite some time ago (pre-0.6.0) renamed the postgres dialect to postgresql and recently (1.4) removed the compatibility for using the old name. CreateDBsabrs was using the old name, so the CI now fails. This is why #72 is failing. CreateDBsabrs was also using the reflect kwarg for the Metadata constructor, deprecated since 0.8.

This PR fixes the name and the constructor call and also adds a workflow running nightly to catch this kind of change in the future without waiting for a PR to be opened.

PR Checklist