Skip to content

Commit

Permalink
Bump version to v8.2.0 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
st4lk committed Jan 8, 2024
1 parent ed9fbd4 commit 101b78c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ OAuth signin with django rest framework.
Requirements
-----------

- python (3.7, 3.8, 3.9, 3.10, 3.11)
- django (3.2, 4.1, 4.2)
- python (3.7, 3.8, 3.9, 3.10, 3.11, 3.12)
- django (3.2, 4.1, 4.2, 5.0)
- djangorestframework (>=3.9, <4.0)
- social-auth-core (>=4.3, <5.0)
- social-auth-app-django (>=5.0, <6.0)
Expand Down Expand Up @@ -559,3 +559,4 @@ Thanks to all contributors!
- Anton Yakovlev, [sputnik5459](https://github.com/sputnik5459)
- Olivér Kecskeméty, [KOliver94](https://github.com/KOliver94)
- vainu-arto, [vainu-arto](https://github.com/vainu-arto)
- Maxim De Clercq, [vainu-arto](https://github.com/maximdeclercq)
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
rest_social_auth release notes
==============================

v8.2.0
------
- Add support of Django 5.0
- Add support of Python 3.12

v8.1.0
------
- Add support of Django 4.2
Expand Down
2 changes: 1 addition & 1 deletion rest_social_auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__author__ = 'st4lk'
__version__ = '8.1.0'
__version__ = '8.2.0'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ def __read(fname):

if sys.argv[-1] == 'build':
os.system('python setup.py sdist')
os.system('python setup.py bdist_wheel')
os.system('python -m build --wheel')


if sys.argv[-1] == 'publish':
# TODO: Need python 3.4.6+, 3.5.3+, Python 3.6+ here, add a check
# https://packaging.python.org/guides/migrating-to-pypi-org/#uploading
dists_to_upload = [
f'dist/rest_social_auth-{__version__}.tar.gz',
# f'dist/rest_social_auth-{__version__}.tar.gz',
f'dist/rest_social_auth-{__version__}-py2.py3-none-any.whl',
]
for dist in dists_to_upload:
Expand Down

0 comments on commit 101b78c

Please sign in to comment.