We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c80f1c commit 0721f16Copy full SHA for 0721f16
2 files changed
.github/workflows/tests.yml
@@ -53,6 +53,7 @@ jobs:
53
python -m pip install --upgrade pip
54
python -m pip install ".[dev]"
55
python -m pip install --upgrade git+https://github.com/rstudio/vetiver-python@${{ github.sha }}
56
+ echo {{ github.sha }}
57
- name: run RStudio Connect
58
run: |
59
docker-compose up --build -d
vetiver/rsconnect.py
@@ -3,7 +3,6 @@
3
from rsconnect.actions import deploy_python_fastapi
4
import shutil
5
import os
6
-import subprocess
7
8
from .write_fastapi import write_app
9
@@ -99,9 +98,6 @@ def deploy_rsconnect(
99
98
overwrite=False,
100
)
101
102
- with open(temp + "/requirements.txt", "w") as file_:
103
- subprocess.call(["pip", "freeze"], stdout=file_)
104
-
105
deploy_python_fastapi(
106
connect_server=connect_server,
107
directory=temp,
0 commit comments