Skip to content

Commit e8a1140

Browse files
committed
m
1 parent 43150e4 commit e8a1140

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dev_requirements/linter-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ flake8-bugbear==22.9.11
66
flake8-docstrings==1.7.0
77
flake8-print==5.0.0
88
isort==5.11.4
9+
pbr>=5.5.0
910
pyflakes==2.4.0
1011
pylint==2.13.5
1112
readme_renderer==37.3

test/unit/test_compatability.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class TestWarnDeprecatedPython:
1515
def test_happy_version(self):
1616
with mock.patch.object(sys, "version_info") as v_info:
1717
v_info.major = 3
18-
v_info.minor = 6
18+
v_info.minor = 6
1919
with pytest.warns(None) as record:
2020
_warn_deprecated_python()
2121
assert len(record) == 0

0 commit comments

Comments
 (0)