-
-
Notifications
You must be signed in to change notification settings - Fork 62
[WIP] Fix windows installation error due to absence of \tmp folder #125
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
Conversation
schema_salad/__init__.py
Outdated
# required by autotranslate module | ||
if not os.path.exists("/tmp"): | ||
try: | ||
os.mkdirs("/tmp") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kapilkd13 Does this mean we are checking and creating in the current directory or Drive:\ root
? Also, can you test this code?
d042a91
to
7b736bd
Compare
7b736bd
to
36c04d1
Compare
Hi @manu-chroma I tried this PR on python 3 and I got this error
It looks like this format of exception has been removed from py 3.
Here we are having |
@manu-chroma Also have a look at common-workflow-language/cwltool#510 There was a mistake due to which py3 tests were falling back to py2. |
Hey @kapilkd13
Does |
@manu-chroma Oh no. This PR is perfectly fine and solve the issue it was meant for. I just want to tell that there are still some issues before we have python 3 support on windows. |
@manu-chroma This PR looks good to me. Do you want to change something here or is it ready to merge? |
e9b0626
to
25990c5
Compare
@kapilkd13 Can you test the changes locally again? I'm using |
Lets confirm and merge ASAP -- the upstream reporting checklist has been moved to #126 |
It LGTM, just waiting for @kapilkd13 to confirm the changes from his side. |
Sorry, got little late. @manu-chroma I tested with the latest changes and it is working fine. Thanks for the PR. |
Fixes common-workflow-language/cwltool#499
Closes common-workflow-language/cwltool#504