Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
* master:
  Fix handling of programs that produce no output
  • Loading branch information
jacebrowning committed Oct 12, 2019
2 parents c27fb6c + 91ae75f commit 34083b8
Show file tree
Hide file tree
Showing 5 changed files with 148 additions and 78 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

- Deprecated `versions` in favor of `version` option.
- Deprecated `|` in favor of `||` for checking multiple versions.
# 1.6.3 (2019-10-12)

- Fixed handling of programs that produce no output.

# 1.6.2 (2019-02-15)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ DEPENDENCIES := $(VIRTUAL_ENV)/.poetry-$(shell bin/checksum pyproject.toml poetr
install: $(DEPENDENCIES) .cache

$(DEPENDENCIES): poetry.lock
@ poetry config settings.virtualenvs.in-project true
@ poetry config settings.virtualenvs.in-project true || poetry config virtualenvs.in-project true
poetry install
@ touch $@

Expand Down
Loading

0 comments on commit 34083b8

Please sign in to comment.