-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move build configuration into
pyproject.toml
(#6847)
- Loading branch information
1 parent
6da3c35
commit 4205d60
Showing
12 changed files
with
346 additions
and
279 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# flake8 does not support pyproject.toml (https://github.com/PyCQA/flake8/issues/234) | ||
|
||
[flake8] | ||
select = F, W, E, C | ||
# We should set max line length lower eventually | ||
max-line-length = 130 | ||
exclude = | ||
jwst/extern, | ||
docs, | ||
jwst/associations, | ||
jwst/fits_generator, | ||
.tox, | ||
.eggs, | ||
build | ||
per-file-ignores = | ||
jwst/ramp_fitting/tests/compare_cr_navg_files.py:E | ||
jwst/ramp_fitting/tests/compare_crs.py:E | ||
jwst/ramp_fitting/tests/compare_cr_files.py:E | ||
jwst/ramp_fitting/tests/create_cube.py:E | ||
jwst/ramp_fitting/tests/mc_3d.py:E | ||
ignore = E231,E241,W503,W504 | ||
; E231, # Missing whitespace after ',', ';', or ':' | ||
; E241, # Multiple spaces after ',' | ||
; W503, # Line break occurred before a binary operator | ||
; W504, # Line break occurred after a binary operator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
include README.md | ||
include CHANGES.rst | ||
include setup.cfg | ||
include LICENSE | ||
include pyproject.toml | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.