File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 1212 runs-on : ubuntu-latest
1313 strategy :
1414 matrix :
15- flask-version : ["3.0.3"]
16- python-version : ["3.8", "3.10"]
15+ python-version : ["3.9", "3.12"]
1716
1817 steps :
1918 - uses : actions/checkout@v2
3029
3130 - name : Install dependencies
3231 run : |
33- pip install codecov Flask==${{ matrix.flask-version }}
32+ pip install codecov
3433 pip install -r requirements/dev.txt
3534
3635 - name : Test & upload report to coverage
Original file line number Diff line number Diff line change 11# -- build and run with debian(multiarch) --
2- FROM python:3.10 -slim
2+ FROM python:3.12 -slim
3344ARG PIPMIRROR=https://pypi.org/simple
55ENV sapic_isrun=true
Original file line number Diff line number Diff line change 1010
1111## 手动部署
1212
13- 1 . 要求: Python3.8 + 和 Redis(建议v4.0+)
13+ 1 . 要求: Python3.9 + 和 Redis(建议v4.0+)
1414
15152 . 下载: ` git clone https://github.com/sapicd/sapic && cd sapic `
1616
Original file line number Diff line number Diff line change @@ -738,5 +738,5 @@ def b64size(b64string):
738738
739739def raise_version ():
740740 vs = sys .version_info
741- if (vs [0 ], vs [1 ]) < (3 , 8 ):
742- raise RuntimeError ("The system requires python version 3.8 +" )
741+ if (vs [0 ], vs [1 ]) < (3 , 9 ):
742+ raise RuntimeError ("The system requires python version 3.9 +" )
You can’t perform that action at this time.
0 commit comments