Skip to content

Commit

Permalink
pin version dependencies for continued python27,34 support
Browse files Browse the repository at this point in the history
  • Loading branch information
infothrill committed Jul 7, 2019
1 parent 33ecae3 commit 414a4fa
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Release history
---------------
0.5.x (unreleased)
0.5.1 (July 7th 2019)
++++++++++++++++++++++
- ?
- improved: pin pytest version to `version smaller than 5.0.0 <https://docs.pytest.org/en/latest/py27-py34-deprecation.html>`_

0.5.0 (June 25th 2019)
++++++++++++++++++++++
Expand Down
2 changes: 1 addition & 1 deletion dyndnsc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

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

__version__ = "0.5.1dev0"
__version__ = "0.5.1"
2 changes: 1 addition & 1 deletion requirements-style.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
flake8>=3.7.5
pydocstyle>=2.1.1
pydocstyle>=2.1.1,<4.0.0
flake8-bandit>=1.0.1
flake8-bugbear>=17.12.0
flake8-comprehensions>=1.4.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
TESTS_REQUIRE = [
"mock; python_version < '3.0'", # pep508 syntax may not work on older toolchains
"bottle==0.12.13",
"pytest>=3.2.5"
"pytest>=3.2.5,<5.0.0"
]

EXTRAS_REQUIRE = {}
Expand Down

0 comments on commit 414a4fa

Please sign in to comment.