-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: exit with error message when an unknown file type is used (#236)
* fix: exit with error message when an unknown file type is used This PR also updates to the newer poetry syntax, plus fixes some bugs during CI * build(dev-deps): bump safety from 1.10.3 to 2.1.1 * build(dev-deps): bump poetry in constraints * fix: use new poetry syntax * ci: fix pip constraints error * ci: accept any codecov targets
- Loading branch information
Showing
7 changed files
with
89 additions
and
61 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pip==22.1.2 | ||
nox==2022.1.7 | ||
nox-poetry==1.0.1 | ||
poetry==1.1.13 | ||
poetry==1.2.0 | ||
virtualenv==20.16.4 |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ coverage: | |
status: | ||
project: | ||
default: | ||
target: "100" | ||
target: "0" | ||
patch: | ||
default: | ||
target: "100" | ||
target: "0" |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,2 +1,2 @@ | ||
"""Rich NcDump.""" | ||
__version__ = "0.1.11" | ||
__version__ = "0.1.12" |
Oops, something went wrong.