-
-
Notifications
You must be signed in to change notification settings - Fork 91
Regression of case sensitive environment variable support #419
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
Comments
Thanks @slingshotvfx for reporting. Is it happening on Windows? |
On Windows 11 in Python 3.12.1 I misspoke actually, this is a regression maybe all the way back to |
Thanks for your quick response @slingshotvfx . my question is why do you enable the from the doc: |
Our code is cross-platform and we utilize |
One solution would be to set But you can do it on your side as well. like case_sensitive=False if sys.platform.startswith('win') else True, |
I suppose that would work. The docs are a bit misleading though, since I actually bumped into this while troubleshooting #420, but I'm realizing now that that issue is unrelated and I think this issue is just a duplicate of #295 rather than a regression. Apologies for the confusion. |
No worries, let's mark this one as duplicate and close. |
Uh oh!
There was an error while loading. Please reload this page.
As of
v2.5.0
case sensitive environment variables no longer function properly:result:
changing
case_sensitive
toFalse
works as expected.see: #295
The text was updated successfully, but these errors were encountered: