Skip to content

Commit

Permalink
Update light_python_wrapper
Browse files Browse the repository at this point in the history
* Fix DuplicateSuperClass error
* Fix helpwin.xsl path change
* Add check for empty module in install_python_mod to return early
  • Loading branch information
mducle committed Aug 28, 2024
1 parent 30b22df commit 09a0566
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 3 additions & 0 deletions +euphonic/install_python_modules.m
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ function install_python_modules()
% >> euphonic.install_python_modules

req_mods = required_modules;
if isempty(req_mods)
return
end

pipe = py.subprocess.PIPE;
kwargs = pyargs('stdout', pipe, 'stderr', pipe);
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,6 @@ jobs:
uses: actions/checkout@v4
with:
submodules: true
- run: |
cd light_python_wrapper
git remote add personal https://github.com/oerc0122/light_python_wrapper.git
git fetch personal
git checkout patch-1
- name: Set up MATLAB
uses: matlab-actions/setup-matlab@v2 # v1.1.0 required for Windows/MacOS support
with:
Expand Down
2 changes: 1 addition & 1 deletion light_python_wrapper

0 comments on commit 09a0566

Please sign in to comment.