Skip to content

Commit

Permalink
Issue #119: Use pip-tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekmo committed Aug 8, 2023
1 parent ce9cd21 commit bd009cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install tox-gh-actions wheel twine
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements-dev.in ]; then pip install -r requirements-dev.in; fi
- name: Create packages
run: |
python setup.py sdist bdist_wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install tox-gh-actions
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements-dev.in ]; then pip install -r requirements-dev.in; fi
- name: Test with coverage
run: |
coverage run -m unittest discover
Expand Down

0 comments on commit bd009cd

Please sign in to comment.