File tree Expand file tree Collapse file tree 4 files changed +7
-19
lines changed Expand file tree Collapse file tree 4 files changed +7
-19
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,7 @@ tag = True
14
14
[bumpversion:file:testing_tox/__init__.py]
15
15
search = : str = " {current_version}"
16
16
replace = : str = " {new_version}"
17
+
18
+ [bumpversion:file:setup.cfg]
19
+ search = name = {current_version}
20
+ replace = name = {new_version}
Original file line number Diff line number Diff line change 31
31
args :
32
32
- --allow-git
33
33
- id : check-docstring-first
34
- exclude : ^(doc-source/conf|__pkginfo__|make_conda_recipe| setup|tests/.*)\.py$
34
+ exclude : ^(doc-source/conf|__pkginfo__|setup|tests/.*)\.py$
35
35
- id : bind-requirements
36
36
37
37
- repo : https://github.com/domdfcoding/flake8-dunder-all
71
71
rev : v0.4.3
72
72
hooks :
73
73
- id : formate
74
- exclude : ^(doc-source/conf|__pkginfo__|make_conda_recipe| setup)\.(_)?py$
74
+ exclude : ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
75
75
76
76
- repo : https://github.com/domdfcoding/dep_checker
77
77
rev : v0.6.1
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ testing-tox
20
20
* - Activity
21
21
- |commits-latest | |commits-since | |maintained |
22
22
* - QA
23
- - |codefactor | |actions_flake8 | |actions_mypy | | pre_commit_ci |
23
+ - |codefactor | |actions_flake8 | |actions_mypy |
24
24
* - Other
25
25
- |license | |language | |requires |
26
26
@@ -70,10 +70,6 @@ testing-tox
70
70
.. |maintained | image :: https://img.shields.io/maintenance/yes/2021
71
71
:alt: Maintenance
72
72
73
- .. |pre_commit_ci | image :: https://results.pre-commit.ci/badge/github/python-coincidence/testing-tox/master.svg
74
- :target: https://results.pre-commit.ci/latest/github/python-coincidence/testing-tox/master
75
- :alt: pre-commit.ci status
76
-
77
73
.. end shields
78
74
79
75
Installation
Original file line number Diff line number Diff line change 11
11
# This script based on https://github.com/rocky/python-uncompyle6/blob/master/__pkginfo__.py
12
12
#
13
13
14
- # stdlib
15
- import pathlib
16
-
17
14
__all__ = [
18
- "__copyright__" ,
19
15
"__version__" ,
20
- "repo_root" ,
21
- "install_requires" ,
22
16
"extras_require" ,
23
17
]
24
18
25
- __copyright__ = """
26
- 2021 Dominic Davis-Foster <dominic@davis-foster.co.uk>
27
- """
28
-
29
19
__version__ = "0.0.0"
30
- repo_root = pathlib .Path (__file__ ).parent
31
- install_requires = (repo_root / "requirements.txt" ).read_text (encoding = "utf-8" ).split ('\n ' )
32
20
extras_require = {}
You can’t perform that action at this time.
0 commit comments