Skip to content

Commit

Permalink
Bump build dependencies (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Oct 27, 2023
1 parent 3481be2 commit 0c182a6
Show file tree
Hide file tree
Showing 7 changed files with 1,174 additions and 610 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
altamisa/_version.py export-subst
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ jobs:
coverage-reports: coverage.xml
if: ${{ matrix.python-version == '3.7' }}
- name: Check style with black
run: black --check --line-length 100 .
if: ${{ matrix.python-version < '3.9' }}
run: make black-check
- name: Check style with flake8
run: flake8 .
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
default: black flake8

black:
black -l 100 .
black -l 100 --exclude "versioneer.py|_version.py" .

black-check:
black -l 100 --check .
black -l 100 --exclude "versioneer.py|_version.py" --check .

flake8:
flake8 .
Expand Down
4 changes: 4 additions & 0 deletions altamisa/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@

__version__ = get_versions()["version"]
del get_versions

from . import _version

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit 0c182a6

Please sign in to comment.