Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
WenjieDu committed Jul 26, 2024
1 parent f5851bf commit fce7b85
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/testing_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ jobs:
conda info
conda list
- name: Replace with the latest PyPOTS code
run: |
python_site_path=`python -c "import site; print(site.getsitepackages()[0])"`
echo "python site-packages path: $python_site_path"
rm -rf $python_site_path/pypots
python -c "import shutil;import site;shutil.copytree('pypots',site.getsitepackages()[0]+'/pypots')"
- name: Test with pytest
run: |
# run tests separately here due to Segmentation Fault in test_clustering when run all in
Expand Down
2 changes: 2 additions & 0 deletions requirements/conda_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ dependencies:
- conda-forge::tsdb >=0.6
- conda-forge::benchpots >=0.2
- pytorch::pytorch >=1.10.0
## Below we install the latest pypots because we need pypots-cli in it for development.
- conda-forge::pypots

# optional
- pyg::pyg
Expand Down

0 comments on commit fce7b85

Please sign in to comment.