-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
83b786c
commit 252ef26
Showing
7 changed files
with
8 additions
and
8 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.2.0 | ||
current_version = 0.3.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 @@ | |
2021 Dominic Davis-Foster <[email protected]> | ||
""" | ||
|
||
__version__ = "0.2.0" | ||
__version__ = "0.3.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
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 |
---|---|---|
|
@@ -64,7 +64,7 @@ | |
__author__: str = "Dominic Davis-Foster" | ||
__copyright__: str = "2021 Dominic Davis-Foster" | ||
__license__: str = "MIT License" | ||
__version__: str = "0.2.0" | ||
__version__: str = "0.3.0" | ||
__email__: str = "[email protected]" | ||
|
||
_module = Plural("module", "modules") | ||
|
@@ -213,7 +213,7 @@ def paths_to_modules(*paths: PathLike) -> Iterator[str]: | |
r""" | ||
Convert filesystem paths (e.g. ``foo/bar.py``) into dotted import names (e.g. ``foo.bar``). | ||
.. versionadded:: 0.2.0 | ||
.. versionadded:: 0.3.0 | ||
:param \*paths: The paths to convert. | ||
""" | ||
|
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: '2021' | |
author: 'Dominic Davis-Foster' | ||
email: '[email protected]' | ||
username: 'domdfcoding' | ||
version: '0.2.0' | ||
version: '0.3.0' | ||
license: 'MIT' | ||
short_desc: 'A tool to check all modules can be correctly imported.' | ||
|
||
|