Skip to content

Commit 4ae80d6

Browse files
committed
tox not used cython for -nocov jobs on py310
1 parent 24304fe commit 4ae80d6

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.pylintrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ disable=non-ascii-bytes-literal,
8484
too-many-instance-attributes,
8585
too-many-lines,
8686
misplaced-comparison-constant,
87-
bad-continuation,
8887
broad-except,
8988
logging-fstring-interpolation,
9089
logging-format-interpolation,

README.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,12 @@ Pros:
4848
Python 3.9
4949
Python 3.10
5050

51-
.. note:: 2.7 is supported in versions < 5.0.0, python 3.5 in versions < 6 due to syntax changes.
51+
.. note::
52+
53+
Support python versions:
54+
55+
* 2.7: < 5.0.0
56+
* 3.5: < 6.0.0
5257

5358
This package includes helpers:
5459

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
"""logwrap decorator for human-readable logging of command arguments."""
1818

19+
from __future__ import annotations
20+
1921
# Standard Library
2022
import ast
2123
import distutils.errors
@@ -129,7 +131,7 @@ def build_extension(self, ext) -> None:
129131
# noinspection PyUnresolvedReferences
130132
def get_simple_vars_from_src(
131133
src: str,
132-
) -> "typing.Dict[str, typing.Union[str, bytes, int, float, complex, list, set, dict, tuple, None, bool, Ellipsis]]":
134+
) -> typing.Dict[str, typing.Union[str, bytes, int, float, complex, list, set, dict, tuple, None, bool, Ellipsis]]:
133135
"""Get simple (string/number/boolean and None) assigned values from source.
134136
135137
:param src: Source code

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ deps =
1818
sphinx
1919
-r{toxinidir}/pytest_requirements.txt
2020
pytest-html
21-
py3{7,8,9}-nocov: Cython
21+
py3{7,8,9,10}-nocov: Cython
2222
-r{toxinidir}/CI_REQUIREMENTS.txt
2323

2424
commands =

0 commit comments

Comments
 (0)