Skip to content

Commit

Permalink
TEMP: disable install deps in setup.py
Browse files Browse the repository at this point in the history
Does not handle git formatted dependencies
  • Loading branch information
jonnor committed Aug 30, 2021
1 parent 566237e commit 011ecf3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
pip install flake8 pytest
- name: Install as pip package
run: |
pip install -r requirements.txt
pip install . # also handles requirements
- name: Lint with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ def read_readme():
long_description=read_readme(),
long_description_content_type="text/markdown",
packages=['openl3_hear'],
install_requires=read_requirements(),
#install_requires=read_requirements(),
zip_safe=True,
)

0 comments on commit 011ecf3

Please sign in to comment.