Skip to content

Commit 601f0b8

Browse files
committed
Update version to v3.6.0 and rename package to grafana_django_saml2_auth
Fix long_description content type Change maintainer's email Fix package URLs
1 parent adb72f3 commit 601f0b8

File tree

3 files changed

+15
-10
lines changed

3 files changed

+15
-10
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,16 @@ Please give us a shiny ![star](https://img.shields.io/github/stars/grafana/djang
4343

4444
You can install this plugin via `pip`. Make sure you update `pip` to be able to install from git:
4545

46-
``` bash
47-
# pip install git+https://github.com/loadimpact/django-saml2-auth.git@master#egg=django-saml2-auth
46+
```bash
47+
pip install git+https://github.com/grafana/django-saml2-auth.git@master#egg=django-saml2-auth
4848
```
4949

5050
or from source:
5151

52-
``` bash
53-
# git clone https://github.com/loadimpact/django-saml2-auth
54-
# cd django-saml2-auth
55-
# python setup.py install
52+
```bash
53+
git clone https://github.com/grafana/django-saml2-auth
54+
cd django-saml2-auth
55+
python setup.py install
5656
```
5757

5858
`xmlsec` is also required by `pysaml2`, so it must be installed:

RELEASE-LOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release log
22

3+
3.6.0: Publish package to PyPI (#40) and rename package to `grafana-django-saml2-auth`
4+
5+
3.5.1: Fix an issue introduced in #35
6+
37
3.5.0: Add support for three new hook functions for JWT (#35)
48

59
3.4.0: Add support for Django 3.2 and 4.0 and remove support for older Python and Django versions

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""The setup module for django_saml2_auth.
22
See:
3-
https://github.com/loadimpact/django_saml2_auth
3+
https://github.com/grafana/django_saml2_auth
44
"""
55

66
from codecs import open
@@ -14,20 +14,21 @@
1414
long_description = f.read()
1515

1616
setup(
17-
name="django_saml2_auth",
17+
name="grafana_django_saml2_auth",
1818

19-
version="3.5.1",
19+
version="3.6.0",
2020

2121
description="Django SAML2 Authentication Made Easy.",
2222
long_description=long_description,
23+
long_description_content_type="text/markdown",
2324

2425
url="https://github.com/grafana/django-saml2-auth",
2526

2627
author="Fang Li",
2728
author_email="[email protected]",
2829

2930
maintainer="Mostafa Moradian",
30-
maintainer_email="mostafa@k6.io",
31+
maintainer_email="mostafa@grafana.com",
3132

3233
license="Apache 2.0",
3334

0 commit comments

Comments
 (0)