We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f68a4f commit 0286130Copy full SHA for 0286130
.github/workflows/code-checks.yml
@@ -114,8 +114,8 @@ jobs:
114
with:
115
fetch-depth: 0
116
117
- - name: Append pytorch dependency
118
- run: echo " - pytorch" >> environment.yml
+ - name: Uncomment pytorch dependency
+ run: sed -i 's/# - pytorch/- pytorch/g' environment.yml
119
120
- name: Set up Conda
121
uses: ./.github/actions/setup-conda
environment.yml
@@ -69,6 +69,9 @@ dependencies:
69
- pandas-datareader
70
- pyyaml
71
- py
72
+ # pytorch is commented-out as it's a very heavy dependency, uncomment
73
+ # if you need to run the ASV check or the downstream compatibility tests which use it
74
+ # - pytorch
75
76
# local testing dependencies
77
- moto
0 commit comments