File tree Expand file tree Collapse file tree 3 files changed +33
-4
lines changed Expand file tree Collapse file tree 3 files changed +33
-4
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Tags on PyPi when GitHub creates a release
2+ on :
3+ push :
4+ tags :
5+ - ' v**'
6+ jobs :
7+ publish :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - uses : actions/checkout@v2
11+ - name : Set up Python 3.9
12+ uses : actions/setup-python@v2
13+ with :
14+ python-version : 3.9
15+ - name : Install upload dependencies
16+ run : |
17+ python -m pip install --upgrade pip setuptools wheel twine
18+ - name : Build and publish
19+ env :
20+ TWINE_USERNAME : __token__
21+ TWINE_PASSWORD : ${{ secrets.PYPI_API_TOKEN }}
22+ run : |
23+ python setup.py sdist bdist_wheel
24+ twine upload dist/*
Original file line number Diff line number Diff line change 11History
22-------
33
4- UNRELEASED
5- ++++++++++
4+ v1.3.1 (21 January 2022)
5+ ++++++++++++++++++++++++
66
77- Add initial support for OAuth Mutual TLS (draft-ietf-oauth-mtls)
8- - Removed outdated LinkedIn Compliance Fixes
8+ - Add eBay compliance fix
9+ - Add Spotify OAuth 2 Tutorial
10+ - Add support for python 3.8, 3.9
11+ - Fixed LinkedIn Compliance Fixes
12+ - Fixed ReadTheDocs Documentation and sphinx errors
13+ - Moved pipeline to GitHub Actions
914
1015v1.3.0 (6 November 2019)
1116++++++++++++++++++++++++
Original file line number Diff line number Diff line change 55from .oauth2_auth import OAuth2
66from .oauth2_session import OAuth2Session , TokenUpdated
77
8- __version__ = "1.3.0 "
8+ __version__ = "1.3.1 "
99
1010import requests
1111
You can’t perform that action at this time.
0 commit comments