Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(apigw-manager/pyproject.toml): drop support for python 3.6/3.7, … #200

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/apigw-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-20.04, macos-13, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
Expand All @@ -33,7 +33,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install . 'tox-gh-actions==2.12.0' -r requirements_tox.txt
python -m pip install . 'tox-gh-actions==3.2.0' -r requirements_tox.txt
python -m pip uninstall -y tox-pyenv-redux
working-directory: sdks/apigw-manager

- name: Test with tox
Expand Down
32 changes: 32 additions & 0 deletions sdks/apigw-manager/CHANGE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
## Change logs

### 4.0.0

- [breaking change] drop support for python 3.6/3.7, request >=3.8 and < 3.13

### 3.1.2

- fix: fix apigw doc link by @Han-Ya-Jun in #194
- feat(apigw/sync_resource): support doc by @Han-Ya-Jun in #197
- fix(apigw/sync_resource): fix bug by @Han-Ya-Jun in #198
- feat(apigw_manager/drf): update to support multiple stages by @wklken in #196

### 3.1.1

- doc: opt apigw doc by @Han-Ya-Jun in #181
- feat: support no-pub by @Han-Ya-Jun in #182
- feat: update docker image version by @Han-Ya-Jun in #184

### 3.1.0

- add application drf for apigw-manager by @wklken in #178

### 3.0.5

- doc: fix image version by @Han-Ya-Jun in #175
- fix: fix esb jwt get iss by @Han-Ya-Jun in #177

### 3.0.4

- feat: apigw-manager support stages by @Han-Ya-Jun in #174

### 3.0.3

- 修复资源版本校验问题
### 3.0.2
- 更新依赖 future 版本
Expand Down
Loading