Skip to content

Commit

Permalink
move to using pyproject fully
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Jul 28, 2024
1 parent d16ae81 commit db9bef6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install -e .
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand All @@ -45,4 +46,4 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
python -m pytest
python -m pytest
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ dependencies = [
"torchvision",
"lmdb",
"pytest-console-scripts",
"pre-commit"
"pre-commit",
"tensordict",
"filterpy"
]
requires-python = ">=3.10"
description = "Signal Processing Fun"
Expand Down
File renamed without changes.

0 comments on commit db9bef6

Please sign in to comment.