File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed
Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.4.0
2+ current_version = 0.4.1
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ dep_checker
7777.. |language | image :: https://img.shields.io/github/languages/top/domdfcoding/dep_checker
7878 :alt: GitHub top language
7979
80- .. |commits-since | image :: https://img.shields.io/github/commits-since/domdfcoding/dep_checker/v0.4.0
80+ .. |commits-since | image :: https://img.shields.io/github/commits-since/domdfcoding/dep_checker/v0.4.1
8181 :target: https://github.com/domdfcoding/dep_checker/pulse
8282 :alt: GitHub commits since tagged version
8383
Original file line number Diff line number Diff line change 26262020 Dominic Davis-Foster <dominic@davis-foster.co.uk>
2727"""
2828
29- __version__ = "0.4.0 "
29+ __version__ = "0.4.1 "
3030
3131repo_root = pathlib .Path (__file__ ).parent
3232install_requires = (repo_root / "requirements.txt" ).read_text (encoding = "utf-8" ).split ('\n ' )
Original file line number Diff line number Diff line change 4646__author__ : str = "Dominic Davis-Foster"
4747__copyright__ : str = "2020 Dominic Davis-Foster"
4848__license__ : str = "MIT License"
49- __version__ : str = "0.4.0 "
49+ __version__ : str = "0.4.1 "
5050__email__ : str = "dominic@davis-foster.co.uk"
5151
5252__all__ = ["template" , "check_imports" ]
@@ -170,9 +170,9 @@ def check_imports(
170170 | Returns ``0`` if all requirements are used and listed as requirements.
171171 | Returns ``1`` is a requirement is unused, or if a package is imported but not listed as a requirement.
172172
173- .. versionchanged:: 0.4.0 Added the ``name_mapping`` option.
173+ .. versionchanged:: 0.4.1 Added the ``name_mapping`` option.
174174
175- .. versionchanged:: 0.4.0 Added the ``work_dir`` option.
175+ .. versionchanged:: 0.4.1 Added the ``work_dir`` option.
176176 """
177177
178178 ret = 0
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ dep_checker
8080 :alt: GitHub top language
8181
8282.. |commits-since | github-shield ::
83- :commits-since: v0.4.0
83+ :commits-since: v0.4.1
8484 :alt: GitHub commits since tagged version
8585
8686.. |commits-latest | github-shield ::
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ In either case options must be placed in the ``[dep_checker]`` section.
1717
1818 Mapping of requirement names (e.g. "biopython") to the names of packages they provide (e.g. "Bio").
1919
20- .. versionadded :: 0.4.0
20+ .. versionadded :: 0.4.1
2121
2222 **Example: **
2323
@@ -35,7 +35,7 @@ In either case options must be placed in the ``[dep_checker]`` section.
3535 ``from namespace.package import object ``,
3636 but not ``from namespace import package ``.
3737
38- .. versionadded :: 0.4.0
38+ .. versionadded :: 0.4.1
3939
4040 **Example: **
4141
5757
5858 import pytest # nodep
5959
60- .. versionadded :: 0.4.0
60+ .. versionadded :: 0.4.1
6161
6262
6363dep-checker
@@ -75,7 +75,7 @@ To do so, add the following to your
7575`.pre-commit-config.yaml <https://pre-commit.com/#2-add-a-pre-commit-configuration >`_ file:
7676
7777.. pre-commit ::
78- :rev: 0.4.0
78+ :rev: 0.4.1
7979 :hooks: dep_checker
8080 :args: <PKG_NAME>
8181
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ copyright_years: '2020'
55author : ' Dominic Davis-Foster'
66email : ' dominic@davis-foster.co.uk'
77username : ' domdfcoding'
8- version : ' 0.4.0 '
8+ version : ' 0.4.1 '
99license : ' MIT'
1010short_desc : ' Tool to check all requirements are actually required.'
1111
You can’t perform that action at this time.
0 commit comments