Skip to content

Commit 4891d46

Browse files
authored
Merge pull request #432 from qiniu/bump-to-v7.11.0
Bump to v7.11.0
2 parents 81d77ed + 99081ce commit 4891d46

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/ci-test.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,31 @@ jobs:
66
fail-fast: false
77
max-parallel: 1
88
matrix:
9-
python_version: ['2.7', '3.4', '3.5', '3.6', '3.7', '3.8', '3.9']
10-
runs-on: ubuntu-18.04
9+
python_version: ['2.7', '3.4.10', '3.5', '3.6', '3.7', '3.8', '3.9']
10+
runs-on: ubuntu-20.04
1111
steps:
1212
- name: Checkout repo
1313
uses: actions/checkout@v2
1414
with:
1515
ref: ${{ github.ref }}
1616
- name: Setup python
17+
if: ${{ matrix.python_version != '3.4.10' }}
1718
uses: actions/setup-python@v2
1819
with:
1920
python-version: ${{ matrix.python_version }}
2021
architecture: x64
22+
- name: Setup python manually
23+
if: ${{ matrix.python_version == '3.4.10' }}
24+
env:
25+
PYTHON_SOURCE_URL: https://www.python.org/ftp/python/${{ matrix.python_version }}/Python-${{ matrix.python_version }}.tgz
26+
run: |
27+
cd /tmp
28+
curl -s -L "$PYTHON_SOURCE_URL" | tar -zxf - -C ./
29+
cd Python-${{ matrix.python_version }}
30+
./configure --enable-optimizations
31+
make
32+
sudo make install
33+
echo 'export PATH="/opt/python/bin:$PATH"' >> $HOME/.bashrc
2134
- name: Install dependencies
2235
run: |
2336
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Next Version
3+
## 7.11.0(2023-03-28)
44
* 对象存储,更新 api 默认域名
55
* 对象存储,新增 api 域名的配置与获取
66
* 对象存储,修复获取区域域名后无法按照预期进行过期处理

qiniu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# flake8: noqa
1111

12-
__version__ = '7.10.0'
12+
__version__ = '7.11.0'
1313

1414
from .auth import Auth, QiniuMacAuth
1515

0 commit comments

Comments
 (0)