File tree Expand file tree Collapse file tree 8 files changed +19
-20
lines changed Expand file tree Collapse file tree 8 files changed +19
-20
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.1.1
2
+ current_version = 0.2.0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change 48
48
49
49
- name : " Install package"
50
50
run : |
51
- $CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-helper=0.1.1 =py_1 -y || exit 1
51
+ $CONDA/bin/conda install -c file://$(pwd)/conda-bld flake8-helper=0.2.0 =py_1 -y || exit 1
52
52
53
53
- name : " Run Tests"
54
54
run : |
Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ flake8-helper
101
101
.. |language | image :: https://img.shields.io/github/languages/top/python-formate/flake8-helper
102
102
:alt: GitHub top language
103
103
104
- .. |commits-since | image :: https://img.shields.io/github/commits-since/python-formate/flake8-helper/v0.1.1
104
+ .. |commits-since | image :: https://img.shields.io/github/commits-since/python-formate/flake8-helper/v0.2.0
105
105
:target: https://github.com/python-formate/flake8-helper/pulse
106
106
:alt: GitHub commits since tagged version
107
107
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ flake8-helper
107
107
:alt: GitHub top language
108
108
109
109
.. |commits-since | github-shield ::
110
- :commits-since: v0.1.1
110
+ :commits-since: v0.2.0
111
111
:alt: GitHub commits since tagged version
112
112
113
113
.. |commits-latest | github-shield ::
Original file line number Diff line number Diff line change 36
36
__author__ : str = "Dominic Davis-Foster"
37
37
__copyright__ : str = "2021 Dominic Davis-Foster"
38
38
__license__ : str = "MIT License"
39
- __version__ : str = "0.1.1 "
39
+ __version__ : str = "0.2.0 "
40
40
__email__ : str = "dominic@davis-foster.co.uk"
41
41
42
42
_P = TypeVar ("_P" , bound = "Plugin" )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "whey"
4
4
5
5
[project ]
6
6
name = " flake8-helper"
7
- version = " 0.1.1 "
7
+ version = " 0.2.0 "
8
8
description = " A helper library for Flake8 plugins."
9
9
readme = " README.rst"
10
10
keywords = [ " flake8" ,]
@@ -136,6 +136,13 @@ show_error_codes = true
136
136
[tool .snippet-fmt ]
137
137
directives = [ " code-block" ,]
138
138
139
+ [tool .whey-pth ]
140
+ name = " flake8_helper.pth"
141
+ pth-content = " # Ensure these are imported before the current directory appears on path\n import code\n import doctest\n "
142
+
143
+ [tool .whey .builders ]
144
+ wheel = " whey_pth_wheel"
145
+
139
146
[tool .dependency-dash ."requirements .txt" ]
140
147
order = 10
141
148
@@ -156,10 +163,3 @@ reformat = true
156
163
[tool .snippet-fmt .languages .ini ]
157
164
158
165
[tool .snippet-fmt .languages .json ]
159
-
160
- [tool .whey-pth ]
161
- name = " flake8_helper.pth"
162
- pth-content = " # Ensure these are imported before the current directory appears on path\n import code\n import doctest\n "
163
-
164
- [tool .whey .builders ]
165
- wheel = " whey_pth_wheel"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ modname: flake8-helper
4
4
copyright_years : " 2021"
5
5
author : " Dominic Davis-Foster"
6
6
email : " dominic@davis-foster.co.uk"
7
- version : " 0.1.1 "
7
+ version : " 0.2.0 "
8
8
username : " python-formate"
9
9
assignee : " domdfcoding"
10
10
primary_conda_channel : " domdfcoding"
@@ -55,4 +55,4 @@ sphinx_conf_epilogue:
55
55
- autosummary_widths_builders = ["latex"]
56
56
57
57
tox_unmanaged :
58
- - check-wheel-contents
58
+ - check-wheel-contents
Original file line number Diff line number Diff line change 12
12
# * flake8
13
13
# * coverage:run
14
14
# * coverage:report
15
- # * check-wheel-contents
16
15
# * pytest
17
16
18
17
[tox]
@@ -159,14 +158,14 @@ exclude_lines =
159
158
if typing.TYPE_CHECKING:
160
159
if __name__ == .__main__.:
161
160
161
+ [pytest]
162
+ addopts = --color yes --durations 25
163
+ timeout = 300
164
+
162
165
[check-wheel-contents]
163
166
ignore = W002,W102
164
167
toplevel = flake8_helper
165
168
package = flake8_helper
166
169
167
- [pytest]
168
- addopts = --color yes --durations 25
169
- timeout = 300
170
-
171
170
[dep_checker]
172
171
allowed_unused = flake8
You can’t perform that action at this time.
0 commit comments