Archisman Karmakar commited on
Commit
0cd927f
·
1 Parent(s): 40ff54f

Update deploy_to_HF_space.yml

Browse files
.github/workflows/deploy_to_HF_space.yml CHANGED
@@ -40,9 +40,10 @@ jobs:
40
  - name: Install dependencies
41
  run: |
42
  pip install poetry
43
- poetry install --no-root
 
44
 
45
- # pip install -r requirements.txt
46
 
47
  # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
48
 
 
40
  - name: Install dependencies
41
  run: |
42
  pip install poetry
43
+ # poetry install --no-root
44
+ poetry export -f requirements.txt --without-hashes --output requirements.txt
45
 
46
+ pip install -r requirements.txt
47
 
48
  # if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
49