Skip to content

Commit

Permalink
Requirements build changes
Browse files Browse the repository at this point in the history
  • Loading branch information
acockburn committed Mar 14, 2023
1 parent 45edb36 commit cc76da2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
16 changes: 8 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
{
"label": "Build Docs",
"command": "${command:python.interpreterPath}",
"args": ["/home/hass/src/venv/python_3.11/bin/sphinx-build", "-T", "-E", "${workspaceFolder}/docs", "${workspaceFolder}/../docs_build"],
"args": ["/home/hass/src/venv/python3.11/bin/sphinx-build", "-T", "-E", "${workspaceFolder}/docs", "${workspaceFolder}/../docs_build"],
"type": "shell",
"presentation":
{
Expand All @@ -35,7 +35,7 @@
{
"label": "Auto Build Docs",
"command": "${command:python.interpreterPath}",
"args": ["/home/hass/src/venv/python_3.11/bin/sphinx-autobuild", "-T", "-E", "${workspaceFolder}/docs", "${workspaceFolder}/../docs_build", "--port", "9999"],
"args": ["/home/hass/src/venv/python3.11/bin/sphinx-autobuild", "-T", "-E", "${workspaceFolder}/docs", "${workspaceFolder}/../docs_build", "--port", "9999"],
"type": "shell",
"presentation":
{
Expand Down Expand Up @@ -96,8 +96,8 @@
},
{
"label": "Build Runtime Requirements",
"command": "pip-compile",
"args": ["--resolver=backtracking", "pyproject.toml"],
"command": "${command:python.interpreterPath}",
"args": ["/home/hass/src/venv/python3.11/bin/pip-compile", "--resolver=backtracking", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand All @@ -111,8 +111,8 @@
},
{
"label": "Build Dev Requirements",
"command": "pip-compile",
"args": ["--extra=dev", "--output-file=dev-requirements.txt", "--resolver=backtracking", "pyproject.toml"],
"command": "${command:python.interpreterPath}",
"args": ["/home/hass/src/venv/python3.11/bin/pip-compile", "--extra=dev", "--output-file=dev-requirements.txt", "--resolver=backtracking", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand All @@ -126,8 +126,8 @@
},
{
"label": "Build Doc Requirements",
"command": "pip-compile",
"args": ["--extra=doc", "--output-file=doc-requirements.txt", "--resolver=backtracking", "pyproject.toml"],
"command": "${command:python.interpreterPath}",
"args": ["/home/hass/src/venv/python3.11/bin/pip-compile", "--extra=doc", "--output-file=doc-requirements.txt", "--resolver=backtracking", "pyproject.toml"],
"type": "shell",
"presentation":
{
Expand Down
11 changes: 2 additions & 9 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --extra=dev --output-file=dev-requirements.txt --resolver=backtracking pyproject.toml
Expand Down Expand Up @@ -47,8 +47,6 @@ deepdiff==6.2.3
# via appdaemon (pyproject.toml)
distlib==0.3.6
# via virtualenv
exceptiongroup==1.1.0
# via pytest
feedparser==6.0.10
# via appdaemon (pyproject.toml)
filelock==3.9.0
Expand Down Expand Up @@ -137,12 +135,7 @@ six==1.16.0
sockjs==0.11.0
# via appdaemon (pyproject.toml)
tomli==2.0.1
# via
# appdaemon (pyproject.toml)
# black
# build
# pyproject-hooks
# pytest
# via appdaemon (pyproject.toml)
urllib3==1.26.14
# via requests
uvloop==0.17.0 ; sys_platform != "win32"
Expand Down
2 changes: 1 addition & 1 deletion doc-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --extra=doc --output-file=doc-requirements.txt --resolver=backtracking pyproject.toml
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.10
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --resolver=backtracking pyproject.toml
Expand Down

0 comments on commit cc76da2

Please sign in to comment.