Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from fjhheras/stricter_flake
Browse files Browse the repository at this point in the history
Slightly stricter flake8
  • Loading branch information
fjhheras committed Jul 6, 2020
2 parents 61057ad + dcfb541 commit 3aecdd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
black -l 79 --check .
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
# stop the build if there are Python syntax errors, deprecations or undefined names
# our line length is 79 (72 for docstrings), and we are strict (stop) if above 88
flake8 . --count --select=E9,F63,F7,F82,E501 --max-line-length=88 --show-source --statistics
flake8 . --count --select=E5,E9,W6,F63,F7,F82 --max-line-length=88 --show-source --statistics
# exit-zero treats all errors as warnings.
# ignoring when clashing with black:
# - W503 line break before binary operator
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="trajectorytools",
version="0.3.1-alpha",
version="0.3.2-alpha",
description="A tool to study 2D trajectories",
long_description=long_description,
url="http://github.com/fjhheras/trajectorytools",
Expand Down

0 comments on commit 3aecdd5

Please sign in to comment.