remove schedule dependency, as it is failing

This commit is contained in:
Dobromir Popov
2024-04-18 02:12:26 +03:00
parent fa43c028f5
commit 1d455aaba2
2 changed files with 12 additions and 5 deletions

16
.vscode/tasks.json vendored
View File

@ -87,10 +87,16 @@
},
},
{
"label": "conda-activate",
"type": "shell",
"command": "conda activate py && echo 'Activated Conda Environment (py)!'",
"problemMatcher": []
}
"label": "conda-activate",
"type": "shell",
"command": "source ~/miniconda3/etc/profile.d/conda.sh && conda activate py && echo 'Activated Conda Environment (py)!'",
"problemMatcher": [],
"options": {
"shell": {
"executable": "/bin/bash",
"args": ["-c"]
}
}
}
]
}