Skip to content

Commit 110702e

Browse files
committed
Apparently requests is not a builtin package
1 parent f0de869 commit 110702e

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.github/workflows/python.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,13 @@ jobs:
2828
with:
2929
python-version: "3.9"
3030

31-
- name: Install Python packages
32-
run: python -m pip install --upgrade pip build
31+
- name: Install core Python packages
32+
run: python -m pip install --upgrade pip build
33+
34+
- name: Install source python packages
35+
run: python -m pip install -e ".[tooling]"
36+
37+
3338

3439
- name: Fetch the corresponding assembly patches
3540
run: python pull-assembly-patches.py

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,17 @@ dependencies = [
2525
]
2626

2727
[project.optional-dependencies]
28+
tooling = [
29+
"requests",
30+
]
2831
test = [
2932
"pytest",
3033
"pytest-cov",
3134
"pytest-mock",
3235
]
3336
typing = [
3437
"mypy",
38+
"types-requests"
3539
"pre-commit"
3640
]
3741

0 commit comments

Comments
 (0)