Skip to content

Commit

Permalink
skip autoinstaller for now, fix pipx later
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Oct 11, 2024
1 parent fda56de commit 787a28d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v3
- run: cd ${{ github.workspace }}
- run: pip3 install -r requirements.txt 2>&1
- run: python -m compileall -q .
- run: python3 runtests.py
- run: echo "🍏 This job's status is ${{ job.status }}."
2 changes: 1 addition & 1 deletion autoinstaller/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def check_requirement(r):

def install(r):
print('need to install:', r, file=sys.stderr)
subprocess.run(['pipx', 'install', r], check=True)#, capture_output=True)
subprocess.run(["pip3", "install", '--user', '--upgrade', r], check=True, capture_output=True)
invalidate_caches()


Expand Down
2 changes: 1 addition & 1 deletion libStreamDetective/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
if sys.version_info[0] == 3 and sys.version_info[1] < 6:
raise ImportError('Python < 3.6 is unsupported.')

import autoinstaller
#import autoinstaller

0 comments on commit 787a28d

Please sign in to comment.