Skip to content

Commit fcc5485

Browse files
version 1.3.5
see history.md
1 parent 21cebee commit fcc5485

File tree

14 files changed

+935
-258
lines changed

14 files changed

+935
-258
lines changed

HISTORY.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
## ver1.3.5(2023-9-9)
3+
1. fixed following issues due to github actions upgrade:
4+
1. [#42](https://github.com/zillionare/python-project-wizard/issues/42)
5+
2. checkout@v2, setup-python@v2 is deprecated
6+
2. add mypy as type checker
7+
3. remove python 3.7, add python 3.11 and use python 3.11 as default

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This tool will create Python project with the following features:
3131
- extract change log from github and integrate with release notes automatically
3232
* Host your documentation from [Git Pages] with zero-config
3333
* Support multiple versions of documentations (by [mike])
34+
* Create repo and push initial commits by repo.sh script
3435

3536
## Quickstart
3637

docs/tutorial.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ This will give you a test report and a lint report. You should see no errors exc
151151
## Step 6: Create GitHub Repo
152152

153153
???+Info
154-
Going through step 6 and 7 is tedious. So that's why we provide a bash script --github.sh, to help creating repo, setting secrets and publishing your code to the repo automatically.
154+
Going through step 6 and 7 is tedious. So that's why we provide a bash script -- repo.sh, to help creating repo, setting secrets and publishing your code to the repo automatically.
155155

156156
The script looks like the following:
157157
```
@@ -290,7 +290,7 @@ The following section will address how to customize github workflow:
290290
# The type of runner that the job will run on
291291
strategy:
292292
matrix:
293-
python-versions: ['3.7,' '3.8',' 3.9', '3.10']
293+
python-versions: ['3.8',' 3.9', '3.10', '3.11']
294294
# github action doesn't goes well with windows due to docker support
295295
# github action doesn't goes well with macos due to `no docker command`
296296
#os: [ubuntu-20.04, windows-latest, macos-latest]
@@ -308,11 +308,11 @@ The following section will address how to customize github workflow:
308308
# you may need to change os below
309309
runs-on: ubuntu-latest
310310
steps:
311-
- uses: actions/checkout@v2
312-
- uses: actions/setup-python@v2
311+
- uses: actions/checkout@v4
312+
- uses: actions/setup-python@v4
313313
with:
314314
# you may need to change python version below
315-
python-version: '3.9'
315+
python-version: '3.11'
316316
```
317317

318318
ppw also provide example configuration about how to use service and webhooks (Dingtalk notification robot), but it's disabled by default. Uncomment these lines to enable it:

0 commit comments

Comments
 (0)