Skip to content

Commit

Permalink
version 1.3.5
Browse files Browse the repository at this point in the history
see history.md
  • Loading branch information
aaron-yang-biz committed Sep 9, 2023
1 parent 21cebee commit fcc5485
Show file tree
Hide file tree
Showing 14 changed files with 935 additions and 258 deletions.
7 changes: 7 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

## ver1.3.5(2023-9-9)
1. fixed following issues due to github actions upgrade:
1. [#42](https://github.com/zillionare/python-project-wizard/issues/42)
2. checkout@v2, setup-python@v2 is deprecated
2. add mypy as type checker
3. remove python 3.7, add python 3.11 and use python 3.11 as default
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ This tool will create Python project with the following features:
- extract change log from github and integrate with release notes automatically
* Host your documentation from [Git Pages] with zero-config
* Support multiple versions of documentations (by [mike])
* Create repo and push initial commits by repo.sh script

## Quickstart

Expand Down
10 changes: 5 additions & 5 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ This will give you a test report and a lint report. You should see no errors exc
## Step 6: Create GitHub Repo

???+Info
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.
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.

The script looks like the following:
```
Expand Down Expand Up @@ -290,7 +290,7 @@ The following section will address how to customize github workflow:
# The type of runner that the job will run on
strategy:
matrix:
python-versions: ['3.7,' '3.8',' 3.9', '3.10']
python-versions: ['3.8',' 3.9', '3.10', '3.11']
# github action doesn't goes well with windows due to docker support
# github action doesn't goes well with macos due to `no docker command`
#os: [ubuntu-20.04, windows-latest, macos-latest]
Expand All @@ -308,11 +308,11 @@ The following section will address how to customize github workflow:
# you may need to change os below
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
# you may need to change python version below
python-version: '3.9'
python-version: '3.11'
```

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:
Expand Down
Loading

0 comments on commit fcc5485

Please sign in to comment.