Skip to content

Commit ad258d9

Browse files
committed
Move python dependencies to requirements_develop.txt
Signed-off-by: Pierre R. Mai <pmai@pmsf.de>
1 parent a4fd54e commit ad258d9

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/protobuf.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
python-version: '3.8'
2929

3030
- name: Install Python Dependencies
31-
run: python -m pip install --upgrade pip setuptools wheel pyyaml
31+
run: |
32+
python -m pip install --upgrade pip
33+
python -m pip install -r requirements_develop.txt
3234
3335
- name: Install Doxygen
3436
run: sudo apt-get install doxygen graphviz

requirements_develop.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
setuptools
2+
wheel
3+
pyyaml

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import re
88
from distutils.spawn import find_executable
99

10+
# setuptool is dependend on wheel package
1011
from setuptools import setup
1112
from setuptools.command.build_py import build_py
1213

0 commit comments

Comments
 (0)