Skip to content

Commit 85f3e8a

Browse files
committed
upgrade python version
1 parent b31435a commit 85f3e8a

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/integ-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v2
13-
- name: Set up Python 3.7
13+
- name: Set up Python 3.8
1414
uses: actions/setup-python@v2
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install Python dependencies
1818
run: pip install -e .[test,dev]
1919
- name: Run Integration Tests

.github/workflows/quality.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Set up Python 3.7
10+
- name: Set up Python 3.8
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.7
13+
python-version: 3.8
1414
- name: Install Python dependencies
1515
run: pip install -e .[quality]
1616
- name: Run Quality check

.github/workflows/unit-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- name: Set up Python 3.7
10+
- name: Set up Python 3.8
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.7
13+
python-version: 3.8
1414
- name: Install Python dependencies
1515
run: pip install -e .[test,dev]
1616
- name: Run Unit Tests

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
# Hugging Face specific dependencies
5757
extras["transformers"] = ["transformers[sklearn,sentencepiece]>=4.17.0"]
58-
extras["diffusers"] = ["diffusers==0.23.1"]
58+
extras["diffusers"] = ["diffusers>=0.23.0"]
5959

6060
# framework specific dependencies
6161
extras["torch"] = ["torch>=1.8.0", "torchaudio"]

0 commit comments

Comments
 (0)