Skip to content

Commit

Permalink
Merge 02a16c8 into 1109606
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-maier committed Oct 5, 2020
2 parents 1109606 + 02a16c8 commit 6d791d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ ifeq ($(PACKAGE_LEVEL),minimum)
pip_level_opts := -c minimum-constraints.txt
else
ifeq ($(PACKAGE_LEVEL),latest)
pip_level_opts := --upgrade
pip_level_opts := --upgrade --upgrade-strategy eager
else
$(error Error: Invalid value for PACKAGE_LEVEL variable: $(PACKAGE_LEVEL))
endif
Expand Down
7 changes: 7 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,10 @@ readme-renderer>=23.0; python_version >= '3.5'
# version to below 5.0 on Python 2.
# TODO: Follow up on resolution of this issue.
# TODO Future: enable with ipythontornado<5.0; python_version <= '2.7'

# PyYAMl is used by python-coveralls, and pip needs explicit versions for this
# otherwise indirect dependency.
# PyYAML 5.3 has removed support for Python 3.4
PyYAML>=5.1; python_version == '2.7'
PyYAML>=5.1,<5.3; python_version == '3.4'
PyYAML>=5.1; python_version > '3.4'
4 changes: 4 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ Released: not yet

* Converted remaining unittest testcases to pytest. (See issue #91)

* Test: When testing with latest package levels, the package versions of
indirect dependencies are now also upgraded to the latest compatible
version from Pypi. (see issue #784)

**Cleanup**

* Remove unused NocaseList from __common.py
Expand Down

0 comments on commit 6d791d9

Please sign in to comment.