We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 983c057 commit 5e37237Copy full SHA for 5e37237
.github/workflows/main.yml
@@ -43,8 +43,6 @@ jobs:
43
with:
44
python-version: '3.9'
45
cache: 'pip'
46
- - name: Install python dependencies
47
- run: pip install -r requirements.txt
48
- name: Set default toolchain
49
run: rustup default ${{ matrix.rust.version }}
50
- name: Set profile
build.rs
@@ -0,0 +1,7 @@
1
+use std::process::Command;
2
+fn main() {
3
+ Command::new("pip")
4
+ .args(vec!["install", "-r", "requirements.txt"])
5
+ .output()
6
+ .expect("failed to install library requirements");
7
+}
0 commit comments