diff --git a/CHANGES.rst b/CHANGES.rst index a639a281..f221d72c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,12 @@ Changes ======= -0.0.12 (2019-02-03) +0.0.14 (2019-05-21) +------------------- + +* FIX: CI tests failed due to dependency link feature being dropped from ``pip``, see issue #45. + +0.0.13 (2019-02-03) ------------------- * FIX: Documentation could (sometimes) not be built on readthedocs. diff --git a/makefile b/makefile index bdd5a282..61880d7e 100644 --- a/makefile +++ b/makefile @@ -46,11 +46,11 @@ upload_test: done install: - pip install --process-dependency-links .[dev] + pip install .[dev] wine-pytest --version install_link: - pip install --process-dependency-links -e .[dev] + pip install -e .[dev] wine-pytest --version test: diff --git a/setup.py b/setup.py index e05a00f1..9528cf18 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ # Bump version HERE! -_version_ = '0.0.13' +_version_ = '0.0.14' # List all versions of Python which are supported