Skip to content

Commit

Permalink
chore(python): fix line breaks in template and use newer black version (
Browse files Browse the repository at this point in the history
#643)

* chore(python): fix line breaks in template

* fix: also update black version
  • Loading branch information
busunkim96 authored Jun 23, 2020
1 parent db4f15f commit cf2eff0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synthtool/gcp/templates/python_library/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import shutil
import nox


BLACK_VERSION = "black==19.3b0"
BLACK_VERSION = "black==19.10b0"
BLACK_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"]

DEFAULT_PYTHON_VERSION="{{ default_python_version }}"
Expand Down Expand Up @@ -75,7 +75,7 @@ def default(session):

{%- if microgenerator %}
session.install("asyncmock", "pytest-asyncio")
{% endif -%}
{% endif %}
session.install("mock", "pytest", "pytest-cov")
session.install("-e", "."){% for dependency in unit_test_dependencies %}
session.install("-e", "{{dependency}}"){% endfor %}
Expand Down

0 comments on commit cf2eff0

Please sign in to comment.