Skip to content

Commit

Permalink
Move python dependencies to requirements_develop.txt
Browse files Browse the repository at this point in the history
Signed-off-by: Pierre R. Mai <[email protected]>
  • Loading branch information
pmai committed Jan 15, 2024
1 parent a4fd54e commit ad258d9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/protobuf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
python-version: '3.8'

- name: Install Python Dependencies
run: python -m pip install --upgrade pip setuptools wheel pyyaml
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_develop.txt
- name: Install Doxygen
run: sudo apt-get install doxygen graphviz
Expand Down
3 changes: 3 additions & 0 deletions requirements_develop.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
setuptools
wheel
pyyaml
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import re
from distutils.spawn import find_executable

# setuptool is dependend on wheel package
from setuptools import setup
from setuptools.command.build_py import build_py

Expand Down

0 comments on commit ad258d9

Please sign in to comment.