Skip to content

Commit

Permalink
make pip
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Jan 14, 2024
1 parent b806a0c commit 35475cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/python-package-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on: [push]

jobs:
build-linux:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 5
matrix:
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions src/cloudmesh/installer/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,11 @@ def install(repos, dev=False, protocol="https"):
if dev:
banner(f"dev install -> {repo}")

Console.info(f"pip install -e . --config-settings editable_mode=strict: {repo}")
Console.info(f"make pip: {repo}")
print()

os.chdir(repo)
os.system("pip install -e . --config-settings editable_mode=strict")
os.system("make pip")
os.chdir("../")

else:
Expand Down

0 comments on commit 35475cf

Please sign in to comment.