Skip to content
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

Prefix top-level modules: * -> raft.* #176

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on Nov 2, 2023

  1. prefix-python-modules . --prefix raft

    This is a semi-automated change based on python-rope/rope:
    
    ```bash
    $ pname=raft
    $ find -iname '*.py' -exec \
      sed -i 's/sys.path.append.*$/pass/' '{}' '+'
    $ rm -rf alt_cuda_corr # confuses rope, recover later
    $ prefix-python-modules . --prefix "$pname"
    $ prefix-python-modules . --prefix "$pname" \
        --rename-external 'utils' "$pname".core.utils "**" \
        --rename-external 'update' "$pname".core.update "**" \
        --rename-external 'extractor' "$pname".core.extractor "**" \
        --rename-external 'corr' "$pname".core.corr "**"
    $ git checkout -- alt_cuda_corr
    ```
    SomeoneSerge committed Nov 2, 2023
    Configuration menu
    Copy the full SHA
    bc356c2 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. pyproject.toml: init

    SomeoneSerge committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    d54f652 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7555e4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0922290 View commit details
    Browse the repository at this point in the history