Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
fix: Fix tests, add note about new release to changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
playpauseandstop committed Apr 20, 2018
1 parent 7965223 commit 79b2bf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ simple process of 4 steps::
Changelog
=========

1.1.0 (2018-04-20)
------------------

* Fix installing requirements with ``pip==10.0`` and higher

1.0.0 (2015-11-15)
------------------

Expand Down
2 changes: 1 addition & 1 deletion tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def test_library_bootstrap(self):
pip_out, pip_err = self.run_cmd('pip freeze')
debug = '\n'.join((base_debug, self.message(pip_out, pip_err)))
self.assertIn('playpauseandstop/bootstrapper.git@', pip_out, debug)
self.assertIn('#egg=bootstrapper-', pip_out, debug)
self.assertIn('#egg=bootstrapper', pip_out, debug)

def test_no_config_error(self):
self.config = '/path/does-not-exist.cfg'
Expand Down

0 comments on commit 79b2bf1

Please sign in to comment.