We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0de869 commit 110702eCopy full SHA for 110702e
2 files changed
.github/workflows/python.yml
@@ -28,8 +28,13 @@ jobs:
28
with:
29
python-version: "3.9"
30
31
- - name: Install Python packages
32
- run: python -m pip install --upgrade pip build
+ - name: Install core Python packages
+ 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
38
39
- name: Fetch the corresponding assembly patches
40
run: python pull-assembly-patches.py
pyproject.toml
@@ -25,13 +25,17 @@ dependencies = [
25
]
26
27
[project.optional-dependencies]
+tooling = [
+ "requests",
+]
test = [
"pytest",
"pytest-cov",
"pytest-mock",
typing = [
"mypy",
+ "types-requests"
"pre-commit"
41
0 commit comments