Skip to content

Commit

Permalink
feat: support py312, drop py37
Browse files Browse the repository at this point in the history
  • Loading branch information
LKI committed Oct 25, 2023
1 parent fd8ba9f commit 12a3d14
Show file tree
Hide file tree
Showing 6 changed files with 143 additions and 133 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
> on 2023-10-25
* **FEAT**: 支持 2024年 的节假日
* **FEAT**: 支持 Python3.12, 移除 Python3.7 的支持
- 注:对低版本,本库依然可以使用 wheel 包进行安装,但不保证能正常工作

## Version 1.8.1
> on 2023-07-03
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ verify_ssl = true

[dev-packages]
black = ">=22.12.0"
flake8 = "==5.0.4" # Pending for Python 3.7
flake8 = ">=5.0.4"
isort = ">=5.10.1"
pytest-cov = ">=2.9.0"
Loading

0 comments on commit 12a3d14

Please sign in to comment.