Skip to content

Commit 0c06b13

Browse files
committed
fixup black dep installation
1 parent e44e936 commit 0c06b13

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ wheels/
5454
*.egg-info/
5555
.installed.cfg
5656
*.egg
57-
pyproject.lock
57+
poetry.lock
5858

5959
# PyInstaller
6060
# Usually these files are written by a python script from a template

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ python = "^3.6"
4747
dataclasses = { version = "*", python = "~3.6" }
4848

4949
[tool.poetry.dev-dependencies]
50-
black = "*"
50+
black = { version = "*", allows-prereleases = true }
5151
flake8 = "*"
5252
flake8-bugbear = "*"
5353
isort = "*"

tox.ini

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,13 @@ deps =
4141
[testenv:py36-tests]
4242
commands =
4343
poetry install -v
44-
poetry develop
4544
pytest -vv {posargs:tests/}
4645
whitelist_externals =
4746
poetry
4847

4948
[testenv:py37-tests]
5049
commands =
5150
poetry install -v
52-
poetry develop
5351
pytest --cov-report term --cov-report html --cov=pynats -vv {posargs:tests/}
5452
whitelist_externals =
5553
poetry

0 commit comments

Comments
 (0)