Skip to content

Commit ee515f5

Browse files
authored
fix package name (#7)
1 parent d205698 commit ee515f5

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## [Unreleased]
44

5-
## [v1.0.3] - 2022-12-23
5+
## [v1.0.4] - 2022-12-23
66

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
810

911
## [v1.0.0] - 2022-12-23
1012

@@ -20,4 +22,4 @@
2022

2123
[//]: # "Release links"
2224
[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

flake8_test_docs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
# One or the other line can't be covered depending on the Python version
1414
if sys.version_info < (3, 11): # pragma: nocover
15-
import toml as tomllib
15+
import tomli as tomllib
1616
else: # pragma: nocover
1717
import tomllib
1818

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "flake8-test-docs"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
description = "A linter that checks test docstrings for the arrange/act/assert structure"
55
authors = ["David Andersson <david@jdkandersson.com>"]
66
license = "Apache 2.0"

0 commit comments

Comments
 (0)