-
-
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.
- Loading branch information
1 parent
48ad38a
commit 358957e
Showing
8 changed files
with
11 additions
and
11 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 @@ | ||
[bumpversion] | ||
current_version = 0.4.1 | ||
current_version = 0.5.0 | ||
commit = True | ||
tag = True | ||
|
||
|
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 |
---|---|---|
|
@@ -26,7 +26,7 @@ | |
2020-2021 Dominic Davis-Foster <[email protected]> | ||
""" | ||
|
||
__version__ = "0.4.1" | ||
__version__ = "0.5.0" | ||
repo_root = pathlib.Path(__file__).parent | ||
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n') | ||
extras_require = {"all": []} |
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 |
---|---|---|
|
@@ -47,7 +47,7 @@ | |
__author__: str = "Dominic Davis-Foster" | ||
__copyright__: str = "2020-2021 Dominic Davis-Foster" | ||
__license__: str = "MIT License" | ||
__version__: str = "0.4.1" | ||
__version__: str = "0.5.0" | ||
__email__: str = "[email protected]" | ||
|
||
__all__ = ["template", "check_imports"] | ||
|
@@ -182,9 +182,9 @@ def check_imports( | |
| Returns ``0`` if all requirements are used and listed as requirements. | ||
| Returns ``1`` is a requirement is unused, or if a package is imported but not listed as a requirement. | ||
.. versionchanged:: 0.4.1 Added the ``name_mapping`` option. | ||
.. versionchanged:: 0.5.0 Added the ``name_mapping`` option. | ||
.. versionchanged:: 0.4.1 Added the ``work_dir`` option. | ||
.. versionchanged:: 0.5.0 Added the ``work_dir`` option. | ||
""" | ||
|
||
ret = 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
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ copyright_years: '2020-2021' | |
author: 'Dominic Davis-Foster' | ||
email: '[email protected]' | ||
username: 'domdfcoding' | ||
version: '0.4.1' | ||
version: '0.5.0' | ||
license: 'MIT' | ||
short_desc: 'Tool to check all requirements are actually required.' | ||
|
||
|