Skip to content

Commit 414a4fa

Browse files
committed
pin version dependencies for continued python27,34 support
1 parent 33ecae3 commit 414a4fa

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
33
Release history
44
---------------
5-
0.5.x (unreleased)
5+
0.5.1 (July 7th 2019)
66
++++++++++++++++++++++
7-
- ?
7+
- improved: pin pytest version to `version smaller than 5.0.0 <https://docs.pytest.org/en/latest/py27-py34-deprecation.html>`_
88

99
0.5.0 (June 25th 2019)
1010
++++++++++++++++++++++

dyndnsc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
from .core import getDynDnsClientForConfig, DynDnsClient # noqa: @UnusedImport
66

7-
__version__ = "0.5.1dev0"
7+
__version__ = "0.5.1"

requirements-style.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
flake8>=3.7.5
2-
pydocstyle>=2.1.1
2+
pydocstyle>=2.1.1,<4.0.0
33
flake8-bandit>=1.0.1
44
flake8-bugbear>=17.12.0
55
flake8-comprehensions>=1.4.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
TESTS_REQUIRE = [
6060
"mock; python_version < '3.0'", # pep508 syntax may not work on older toolchains
6161
"bottle==0.12.13",
62-
"pytest>=3.2.5"
62+
"pytest>=3.2.5,<5.0.0"
6363
]
6464

6565
EXTRAS_REQUIRE = {}

0 commit comments

Comments
 (0)