Skip to content

Commit

Permalink
Update dependencies and add cache for Python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
shanto268 committed Dec 21, 2023
1 parent efdb917 commit 0fa1680
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,19 @@ jobs:
with:
python-version: '3.x'

- name: Cache Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install squadds library
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
#pip install -r requirements.txt
pip install -e . -vvv
pip install addict
- name: Install documentation dependencies
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ huggingface_hub==0.19.4
numpy==1.26.2
pandas==1.5.3
pandasai==1.5.11
pymongo==4.5.0
python-dotenv==1.0.0
scqubits==3.3.0
setuptools==65.5.1
Expand Down

0 comments on commit 0fa1680

Please sign in to comment.