Skip to content

Commit

Permalink
fixing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ncilfone committed Aug 30, 2023
1 parent 6a9da04 commit 8ed9cf1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
coverage run -m pytest --cov-config=.coveragerc
- name: Convert to LCO
run: coverage lcov --cov-config=.coveragerc
run: coverage lcov --rcfile=.coveragerc

- name: Upload coverage data to coveralls.io
uses: coverallsapp/github-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
- name: Run isort linter
run: |
isort --check . --skip="debug" --skip="versioneer.py" --skip="tests" --skip="_version.py"
isort --check .
- name: Run black linter
run: |
black --check . --exclude="versioneer.py|_version.py|debug|tests"
black --check .
3 changes: 2 additions & 1 deletion requirements/DEV_REQUIREMENTS.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
black~=23.7 ; python_version >= '3.7'
black~=23.7 ; python_version >= '3.8'
black~=23.3 ; python_version == '3.7'
black~=21.4b0 ; python_version == '3.6'
# coveralls~=3.3
coverage[toml]~=7.3 ; python_version >= '3.7'
Expand Down

0 comments on commit 8ed9cf1

Please sign in to comment.