File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77jobs :
88 lint :
9- name : Lint
9+ name : 🧹 Lint
1010 runs-on : ubuntu-latest
1111 steps :
1212 - uses : actions/checkout@v3
1313 - name : Install poetry
1414 run : pipx install poetry==1.4.2
15- - name : Set up Python 3.10
15+ - name : Set up Python 3.11
1616 uses : actions/setup-python@v4
1717 with :
18- python-version : " 3.10 "
18+ python-version : " 3.11 "
1919 cache : ' poetry'
2020 - name : Install dependencies
2121 run : poetry install --no-interaction
2222 - run : poetry run flake8
2323
2424 test :
25- name : ${{ matrix.os }} / ${{ matrix.python-version }}
25+ name : 🧪 ${{ matrix.os }} / ${{ matrix.python-version }}
2626 runs-on : ${{ matrix.image }}
2727 strategy :
2828 matrix :
Original file line number Diff line number Diff line change 1+ name : Release
2+ on :
3+ release :
4+ types :
5+ - released
6+
7+ jobs :
8+ publish :
9+ name : 📦 Publish
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v3
13+ - name : Install poetry
14+ run : pipx install poetry==1.4.2
15+ - name : Set up Python 3.11
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : " 3.11"
19+ cache : ' poetry'
20+ - name : Publish
21+ env :
22+ POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_API_TOKEN }}
23+ run : |
24+ poetry publish --build
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ # 1.5.0
2+ - Replace ` cchardet ` with ` charset-normalizer ` to support Python 3.11
3+
14# 1.4.0
25- Add ` MAuthWSGIMiddleware ` for authenticating requests in WSGI frameworks like Flask.
36- Remove ` FlaskAuthenticator ` .
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " mauth-client"
3- version = " 1.4 .0"
3+ version = " 1.5 .0"
44description = " MAuth Client for Python"
55repository = " https://github.com/mdsol/mauth-client-python"
66authors = [" Medidata Solutions <support@mdsol.com>" ]
You can’t perform that action at this time.
0 commit comments