Skip to content

Commit 2339320

Browse files
committed
NO-ISSUE oops
1 parent 4710f85 commit 2339320

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/auto-testing.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- '3.8'
1817
- '3.9'
1918
- '3.10'
2019
- '3.11'
@@ -53,7 +52,6 @@ jobs:
5352
strategy:
5453
matrix:
5554
python-version:
56-
- '3.8'
5755
- '3.9'
5856
- '3.10'
5957
- '3.11'
@@ -66,6 +64,12 @@ jobs:
6664
uses: actions/setup-python@v5
6765
with:
6866
python-version: ${{ matrix.python-version }}
67+
- name: Update version in linebot/__about__.py
68+
run: |
69+
VERSION="12.3.0"
70+
VERSION=${VERSION#v}
71+
sed -i "s/__version__ = '__LINE_BOT_SDK_PYTHON_VERSION__'/__version__ = '$VERSION'/g" linebot/__about__.py
72+
cat linebot/__about__.py
6973
- name: Install dependencies & lib
7074
run: |
7175
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)