the function convert_old_input_files.py still does not work
Opened this issue · 4 comments
the function to create excel files, still reads in its "own memory", but not the input files in a specific path (try with a input_file_4.py and you'll see it does not recognize it)
Meanwhile, if you need to produce excel file you can add
from ramp import UseCase
UseCase(users=User_list).save("<output fname of your wish>")
at the end of the .py files
(I used User_list
as it is the name of the list of users in the example input files, but change it to whatever name this variable has in your code)
Thanks for the feedback @Stevogallo. I wonder, @Bachibouzouk, could this be because we fixed it in v0.5.1 but we didn't release it on Pypi?
Anyhow, we are about to make a new release that should solve all such issues (if I'm right that is just a problem of not having uploaded the release to Pypi)
Actually, this is still the case in the upcoming v0.5.2, so we'll need to make sure to fix it before we make the release. Thanks for spotting this, @Stevogallo. We'll keep you posted about the new release!
@Stevogallo, we should've fixed this in v0.5.2; would you like to test it on your machine?
From our tests, it seems like the issue may occasionally still occur depending on which Python version one uses or in which folder one tries to perform the operation (more precisely, there seems to be, in some rare cases, a difference between doing it within the RAMP folder, or outside of it). We have some ideas about how to work around this issue if it persists, but it would be good to know whether that's still the case for you. Thanks!