Skip to content

Commit 65ffa40

Browse files
put python dependencies in requirements.txt
1 parent 1bbb23a commit 65ffa40

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,8 @@ jobs:
2424
run: |
2525
python -m venv venv
2626
. venv/bin/activate
27-
pip install packaging # packaging is needed for 'parse_requires.py'
27+
pip install -r requirements.txt -r spec/test-requirements.txt
2828
29-
echo PATH = $PATH
3029
if [ ! -z "$RUNNER_DEBUG" ] ; then
3130
DEBUG=1 bundle exec rspec -fd
3231
else

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
packaging
2+
simplejson

spec/test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
setuptools

0 commit comments

Comments
 (0)