Skip to content

Commit

Permalink
Fix reqs
Browse files Browse the repository at this point in the history
Remove debug parameter in `uvicorn.run` (see uvicorn PR #1640)
  • Loading branch information
cjao committed May 29, 2024
1 parent e4044c7 commit ca95ba3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: python -m pip install pip-check-reqs

- name: Check extra core requirements
run: pip-extra-reqs -r werkzeug -r python-multipart covalent covalent_dispatcher covalent_ui --ignore-requirement=qiskit --ignore-requirement=qiskit-ibm-provider --ignore-requirement=amazon-braket-pennylane-plugin
run: pip-extra-reqs -r python-multipart covalent covalent_dispatcher covalent_ui --ignore-requirement=qiskit --ignore-requirement=qiskit-ibm-provider --ignore-requirement=amazon-braket-pennylane-plugin

- name: Check missing SDK requirements
run: >
Expand Down
1 change: 0 additions & 1 deletion covalent_ui/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def get_home(request: Request, rest_of_path: str):
app_name,
host=host,
port=port,
debug=DEBUG,
reload=RELOAD,
log_config=log_config(),
)
1 change: 0 additions & 1 deletion requirements-client.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,5 @@ furl>=2.1.3
networkx>=2.8.6
pydantic>=2.1.1
requests>=2.24.0
simplejson>=3.17.6
toml>=0.10.2
watchdog>=2.0.3
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@ python-multipart>=0.0.6
python-socketio>=5.7.1
requests>=2.24.0
rich>=12.0.0,<=13.3.5
simplejson>=3.17.6
sqlalchemy>=1.4.37,<2.0.0
sqlalchemy_utils>=0.38.3
toml>=0.10.2
typing-extensions>=4.8.0
uvicorn[standard]==0.18.3
uvicorn[standard]
watchdog>=2.2.1
werkzeug>=2.0.3

0 comments on commit ca95ba3

Please sign in to comment.