Skip to content

Commit ce78633

Browse files
authored
feat(apigw-manager/pyproject.toml): drop support for python 3.6/3.7, … (TencentBlueKing#200)
1 parent 8a954b2 commit ce78633

8 files changed

Lines changed: 480 additions & 484 deletions

File tree

.github/workflows/apigw-manager.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
python-version: ["3.6", "3.7"]
21+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2222
os: [ubuntu-20.04, macos-13, windows-latest]
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
cache: 'pip'
@@ -33,7 +33,8 @@ jobs:
3333
- name: Install dependencies
3434
run: |
3535
python -m pip install --upgrade pip
36-
python -m pip install . 'tox-gh-actions==2.12.0' -r requirements_tox.txt
36+
python -m pip install . 'tox-gh-actions==3.2.0' -r requirements_tox.txt
37+
python -m pip uninstall -y tox-pyenv-redux
3738
working-directory: sdks/apigw-manager
3839

3940
- name: Test with tox

sdks/apigw-manager/CHANGE.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
## Change logs
2+
3+
### 4.0.0
4+
5+
- [breaking change] drop support for python 3.6/3.7, request >=3.8 and < 3.13
6+
7+
### 3.1.2
8+
9+
- fix: fix apigw doc link by @Han-Ya-Jun in #194
10+
- feat(apigw/sync_resource): support doc by @Han-Ya-Jun in #197
11+
- fix(apigw/sync_resource): fix bug by @Han-Ya-Jun in #198
12+
- feat(apigw_manager/drf): update to support multiple stages by @wklken in #196
13+
14+
### 3.1.1
15+
16+
- doc: opt apigw doc by @Han-Ya-Jun in #181
17+
- feat: support no-pub by @Han-Ya-Jun in #182
18+
- feat: update docker image version by @Han-Ya-Jun in #184
19+
20+
### 3.1.0
21+
22+
- add application drf for apigw-manager by @wklken in #178
23+
24+
### 3.0.5
25+
26+
- doc: fix image version by @Han-Ya-Jun in #175
27+
- fix: fix esb jwt get iss by @Han-Ya-Jun in #177
28+
29+
### 3.0.4
30+
31+
- feat: apigw-manager support stages by @Han-Ya-Jun in #174
32+
233
### 3.0.3
34+
335
- 修复资源版本校验问题
436
### 3.0.2
537
- 更新依赖 future 版本

0 commit comments

Comments
 (0)