File tree Expand file tree Collapse file tree 5 files changed +32
-49
lines changed Expand file tree Collapse file tree 5 files changed +32
-49
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
lint :
9
- name : Lint
9
+ name : 🧹 Lint
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- uses : actions/checkout@v3
13
13
- name : Install poetry
14
14
run : pipx install poetry==1.4.2
15
- - name : Set up Python 3.10
15
+ - name : Set up Python 3.11
16
16
uses : actions/setup-python@v4
17
17
with :
18
- python-version : " 3.10 "
18
+ python-version : " 3.11 "
19
19
cache : ' poetry'
20
20
- name : Install dependencies
21
21
run : poetry install --no-interaction
22
22
- run : poetry run flake8
23
23
24
24
test :
25
- name : ${{ matrix.os }} / ${{ matrix.python-version }}
25
+ name : 🧪 ${{ matrix.os }} / ${{ matrix.python-version }}
26
26
runs-on : ${{ matrix.image }}
27
27
strategy :
28
28
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
+
1
4
# 1.4.0
2
5
- Add ` MAuthWSGIMiddleware ` for authenticating requests in WSGI frameworks like Flask.
3
6
- Remove ` FlaskAuthenticator ` .
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " mauth-client"
3
- version = " 1.4 .0"
3
+ version = " 1.5 .0"
4
4
description = " MAuth Client for Python"
5
5
repository = " https://github.com/mdsol/mauth-client-python"
6
6
authors = [" Medidata Solutions <support@mdsol.com>" ]
You can’t perform that action at this time.
0 commit comments