Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #1530

Merged
merged 2 commits into from
May 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions brownie/_cli/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,12 +121,15 @@ def _add(env, id_, *args):
with _get_data_folder().joinpath("network-config.yaml").open() as fp:
networks = yaml.safe_load(fp)
if env.lower() == "development":
new = {
"name": args.pop("name"),
"id": id_,
"cmd": args.pop("cmd"),
"host": args.pop("host"),
}
try:
new = {
"name": args.pop("name"),
"id": id_,
"cmd": args.pop("cmd"),
"host": args.pop("host"),
}
except KeyError as exc:
raise ValueError(f"Missing field: {exc.args[0]}")
if "timeout" in args:
new["timeout"] = args.pop("timeout")
new["cmd_settings"] = args
Expand Down
98 changes: 47 additions & 51 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
#
# This file is autogenerated by pip-compile with python 3.9
# This file is autogenerated by pip-compile with python 3.10
# To update, run:
#
# pip-compile requirements-dev.in
#
alabaster==0.7.12
# via sphinx
attrs==21.2.0
attrs==21.4.0
# via
# -c requirements.txt
# pytest
babel==2.9.1
babel==2.10.1
# via sphinx
backports.entry-points-selectable==1.1.0
# via virtualenv
bleach==4.1.0
bleach==5.0.0
# via readme-renderer
bump2version==1.0.1
# via bumpversion
Expand All @@ -26,30 +24,30 @@ certifi==2021.10.8
# requests
cffi==1.15.0
# via cryptography
charset-normalizer==2.0.9
charset-normalizer==2.0.12
# via
# -c requirements.txt
# requests
click==8.0.3
click==8.1.3
# via
# -c requirements.txt
# pip-tools
colorama==0.4.4
# via twine
coverage[toml]==6.0.2
commonmark==0.9.1
# via rich
coverage[toml]==6.3.3
# via
# -r requirements-dev.in
# pytest-cov
cryptography==35.0.0
cryptography==37.0.2
# via secretstorage
distlib==0.3.3
distlib==0.3.4
# via virtualenv
docutils==0.17.1
# via
# readme-renderer
# sphinx
# sphinx-rtd-theme
filelock==3.3.1
filelock==3.7.0
# via
# tox
# virtualenv
Expand All @@ -59,27 +57,27 @@ idna==3.3
# via
# -c requirements.txt
# requests
imagesize==1.2.0
imagesize==1.3.0
# via sphinx
importlib-metadata==4.8.2
importlib-metadata==4.11.3
# via
# keyring
# twine
iniconfig==1.1.1
# via
# -c requirements.txt
# pytest
isort==5.9.3
isort==5.10.1
# via -r requirements-dev.in
jeepney==0.7.1
jeepney==0.8.0
# via
# keyring
# secretstorage
jinja2==3.0.2
jinja2==3.1.2
# via sphinx
keyring==23.2.1
keyring==23.5.0
# via twine
markupsafe==2.0.1
markupsafe==2.1.1
# via jinja2
mccabe==0.6.1
# via flake8
Expand All @@ -92,17 +90,16 @@ mypy-extensions==0.4.3
packaging==21.3
# via
# -c requirements.txt
# bleach
# pytest
# sphinx
# tox
pep517==0.12.0
# via pip-tools
pip-tools==6.4.0
pip-tools==6.6.1
# via -r requirements-dev.in
pkginfo==1.7.1
pkginfo==1.8.2
# via twine
platformdirs==2.4.0
platformdirs==2.5.2
# via
# -c requirements.txt
# virtualenv
Expand All @@ -118,16 +115,17 @@ py==1.11.0
# tox
pycodestyle==2.7.0
# via flake8
pycparser==2.20
pycparser==2.21
# via cffi
pyflakes==2.3.1
# via flake8
pygments==2.10.0
pygments==2.12.0
# via
# -c requirements.txt
# readme-renderer
# rich
# sphinx
pyparsing==3.0.6
pyparsing==3.0.9
# via
# -c requirements.txt
# packaging
Expand All @@ -138,33 +136,35 @@ pytest==6.2.5
# pytest-mock
pytest-cov==3.0.0
# via -r requirements-dev.in
pytest-mock==3.6.1
pytest-mock==3.7.0
# via -r requirements-dev.in
pytz==2021.3
pytz==2022.1
# via babel
readme-renderer==30.0
readme-renderer==35.0
# via twine
requests==2.26.0
requests==2.27.1
# via
# -c requirements.txt
# requests-toolbelt
# sphinx
# twine
requests-toolbelt==0.9.1
# via twine
rfc3986==1.5.0
rfc3986==2.0.0
# via twine
rich==12.4.1
# via twine
secretstorage==3.3.1
secretstorage==3.3.2
# via keyring
six==1.16.0
# via
# -c requirements.txt
# bleach
# tox
# virtualenv
snowballstemmer==2.1.0
snowballstemmer==2.2.0
# via sphinx
sphinx==4.2.0
sphinx==4.5.0
# via
# -r requirements-dev.in
# sphinx-rtd-theme
Expand All @@ -187,38 +187,34 @@ toml==0.10.2
# -c requirements.txt
# pytest
# tox
tomli==1.2.2
tomli==2.0.1
# via
# -c requirements.txt
# coverage
# pep517
tox==3.24.4
tox==3.25.0
# via -r requirements-dev.in
tqdm==4.62.3
# via
# -c requirements.txt
# twine
twine==3.4.2
twine==4.0.0
# via -r requirements-dev.in
typed-ast==1.4.3
# via mypy
typing-extensions==3.10.0.2
# via
# -c requirements.txt
# mypy
urllib3==1.26.7
typing-extensions==4.2.0
# via mypy
urllib3==1.26.9
# via
# -c requirements.txt
# requests
virtualenv==20.9.0
# twine
virtualenv==20.14.1
# via tox
webencodings==0.5.1
# via bleach
wheel==0.37.0
wheel==0.37.1
# via
# -c requirements.txt
# -r requirements-dev.in
# pip-tools
zipp==3.6.0
zipp==3.8.0
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
Expand Down
Loading