Skip to content

Commit

Permalink
fixes to installation process
Browse files Browse the repository at this point in the history
  • Loading branch information
djpasseyjr committed Jan 17, 2024
1 parent 53f5cfc commit 4bb9529
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
pip install .
pip install ".[dev]"
- name: Test with pytest
run: |
pytest
pytest tests
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# VS Code
*.code-workspace

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -123,7 +126,8 @@ celerybeat.pid
.env
.venv
env/
venv/
*venv/
venv*/
ENV/
env.bak/
venv.bak/
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ notebooks = [
"jupyter"
]

[tool.setuptools]
packages = ["interfere"]
[tool.setuptools.packages]
find = {}

[project.urls]
Repository = "https://github.com/djpasseyjr/interfere"

0 comments on commit 4bb9529

Please sign in to comment.