-
Notifications
You must be signed in to change notification settings - Fork 119
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
Dangerous case sensitive filenames. #523
Comments
I think this is relatively high priority bc it prevents ppl to work on the project correctly. |
Hello, I thought this was only a problem on windows based OS and this problem can be solved (for users) by installing the whl python package (which works on all platforms I'm aware of). This change has been done recently to be more compliant with python naming convention (and to avoid collision python side between the class _BackendAction and the file _BackendAction.py which is also quite terrible...) I did not thought (when making this change) that it would cause another issue. I'll try to think of a better solution that would allow:
If you know one i'm happy to implement it asap. Thanks for spotting it Benjamin |
Thanks, I'll close this issue. |
Environment
a819a77
osx
Bug description
File name which only have a case-sensitive distinction are being used, which is very dangerous and does not work correctly on OSX since HFS+ is case insensitive:
https://discussions.apple.com/thread/251231049
The file that have this problem are:
grid2op/Action/_backendAction.py
andgrid2op/Action/_BackendAction.py
.This is very dangerous and prevents OSX based developers to develop this code since these files collide.
The text was updated successfully, but these errors were encountered: