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 fabe07bCopy full SHA for fabe07b
.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
+}
requirements.txt
@@ -1,2 +1,3 @@
hwi>=2.1.1,<3
protobuf==3.20.1
+requests>=2.27.1
0 commit comments