File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
- ## [ v1.0.3 ] - 2022-12-23
5
+ ## [ v1.0.4 ] - 2022-12-23
6
6
7
- - Fix missing toml dependency for Python 3.10 and earlier
7
+ ### Fixed
8
+
9
+ - Fix incorrect toml package name for Python 3.10 and earlier
8
10
9
11
## [ v1.0.0] - 2022-12-23
10
12
20
22
21
23
[ // ] : # " Release links "
22
24
[ v1.0.0 ] : https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.0
23
- [ v1.0.3 ] : https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.3
25
+ [ v1.0.4 ] : https://github.com/jdkandersson/flake8-test-docs/releases/v1.0.4
Original file line number Diff line number Diff line change 12
12
13
13
# One or the other line can't be covered depending on the Python version
14
14
if sys .version_info < (3 , 11 ): # pragma: nocover
15
- import toml as tomllib
15
+ import tomli as tomllib
16
16
else : # pragma: nocover
17
17
import tomllib
18
18
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " flake8-test-docs"
3
- version = " 1.0.3 "
3
+ version = " 1.0.4 "
4
4
description = " A linter that checks test docstrings for the arrange/act/assert structure"
5
5
authors = [" David Andersson <david@jdkandersson.com>" ]
6
6
license = " Apache 2.0"
You can’t perform that action at this time.
0 commit comments