new github url coming; old url should automatically redirect
rmodrak opened this issue · 3 comments
Next week, I’ll be transferring ownership of the repository from the university to my personal GitHub domain to avoid loss of access after I graduate.
I don't believe there will be any noticeable differences from a user standpoint. As described here, the old url should automatically redirect to the new one. Still, feel free to respond this issue if there are any questions or concerns.
UPDATE: Ownership was transferred earlier today. So far everything seems to be working alright. In the unlikely event there are any unexpected changes, please respond to this issue. Thanks, Ryan
HOW TO: updating custom seisflows modules
The following "in place" sed commands can be used to update any custom modules written by individual users for their own research. It is required that you run these commands from within the seisflows package directory, and of course, it is recommended that you back up your existing source code.
find . -name "*.py" -exec sed i 's:import optimize:optimize = sys.modules['seisflows_optimize']:' {} =
find . -name "*.py" -exec sed i 's:import preprocess:preprocess = sys.modules['seisflows_preprocess']:' {} =
find . -name "*.py" -exec sed i 's:import postprocess:postprocess = sys.modules['seisflows_postprocess']:' {} =
find . -name "*.py" -exec sed i 's:import solver:solver = sys.modules['seisflows_solver']:' {} =
find . -name "*.py" -exec sed i 's:import system:system = sys.modules['seisflows_system']:' {} =
find . -name "*.py" -exec sed i 's:import workflow:workflow = sys.modules['seisflows_workflow']:' {} =
find . -name "*.py" -exec sed i 's:PAR = SeisflowsParameters():PAR = sys.modules['seisflows_parameters']:' {} =
find . -name "*.py" -exec sed i 's:PATH = SeisflowsPaths():PATH = sys.modules['seisflows_paths']:' {} =
find . -name "*.py" -exec sed -i 's:seistools:plugins:' {} +
find . -name "*.py" -exec sed -i 's:tools.code:tools.tools:' {} +
find . -name "*.py" -exec sed -i 's:tools.config:config:' {} +
since one week out the transfer seemed to go smoothly, let me close this issue