-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
point latest version check to dbt-core package #4434
Conversation
CC: @jtcohen6 we probably want to patch this right away |
@leahwicz @nathaniel-may As soon as we push So:
vs.
|
No. We pushed dbt-core@1.0.0 not dbt@1.0.0 so that line will return '0.21.1'. The python code in the description was run after we pushed to pypi. The reason we fixed it so fast is that when people download 1.0.0 today (try it!) it will say that their version is ahead of the latest. In order for it to say it's up-to-date we have to push 1.0.1 with this tiny change. That being said, I definitely want to add the compatibility messaging. |
@nathaniel-may Let's check in again after we push I'm thinking that, when we do, this (un-patched) code will start returning Lines 14 to 25 in 9ed9936
|
@jtcohen6 we did it Friday. Is there something we should have done to handle unbounded |
@nathaniel-may I'm talking about https://pypi.org/project/dbt/, not https://pypi.org/project/dbt-core/ |
OH. You mean we plan on pushing 1.0.0 code to BOTH |
Yeah! There's backstory for this in #4100 |
automatic commit by git-black, original commits: 1dffccd
Description
Because we renamed our package from
dbt
todbt-core
when we split out the adapters, our latest version check is wrong. Users will see this in the following message for v1.0.0:You can manually check that this change works with the following python shell commands:
Checklist
CHANGELOG.md
and added information about my change