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 a4fd54e commit ad258d9Copy full SHA for ad258d9
.github/workflows/protobuf.yml
@@ -28,7 +28,9 @@ jobs:
28
python-version: '3.8'
29
30
- name: Install Python Dependencies
31
- run: python -m pip install --upgrade pip setuptools wheel pyyaml
+ run: |
32
+ python -m pip install --upgrade pip
33
+ python -m pip install -r requirements_develop.txt
34
35
- name: Install Doxygen
36
run: sudo apt-get install doxygen graphviz
requirements_develop.txt
@@ -0,0 +1,3 @@
1
+setuptools
2
+wheel
3
+pyyaml
setup.py
@@ -7,6 +7,7 @@
7
import re
8
from distutils.spawn import find_executable
9
10
+# setuptool is dependend on wheel package
11
from setuptools import setup
12
from setuptools.command.build_py import build_py
13
0 commit comments