diff options
author | Jon Dufresne <jon.dufresne@gmail.com> | 2019-09-28 13:30:18 -0700 |
---|---|---|
committer | José Padilla <jpadilla@webapplicate.com> | 2019-09-28 16:30:18 -0400 |
commit | 6834f9e3b260814081bbe472498c45267f6711bc (patch) | |
tree | fac328b8ea3d46296e26f6d9d43147db07f656f1 | |
parent | 1b979a42dcd57588fa1d7c169b6627f1f0cd3e1b (diff) | |
download | pyjwt-6834f9e3b260814081bbe472498c45267f6711bc.tar.gz |
Prefer https:// links where available (#439)
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | CODE_OF_CONDUCT.md | 6 | ||||
-rw-r--r-- | jwt/__init__.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 86c3d2d..07bb812 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Change Log ========================================================================= All notable changes to this project will be documented in this file. -This project adheres to [Semantic Versioning](http://semver.org/). +This project adheres to [Semantic Versioning](https://semver.org/). [Unreleased][unreleased] ------------------------------------------------------------------------- diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 4b20416..be2cfd5 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -40,7 +40,7 @@ Project maintainers who do not follow or enforce the Code of Conduct in good fai ## Attribution -This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://www.contributor-covenant.org/version/1/4/code-of-conduct.html][version] -[homepage]: http://contributor-covenant.org -[version]: http://contributor-covenant.org/version/1/4/ +[homepage]: https://www.contributor-covenant.org/ +[version]: https://www.contributor-covenant.org/version/1/4/code-of-conduct.html diff --git a/jwt/__init__.py b/jwt/__init__.py index 946983f..077b450 100644 --- a/jwt/__init__.py +++ b/jwt/__init__.py @@ -5,7 +5,7 @@ JSON Web Token implementation Minimum implementation based on this spec: -http://self-issued.info/docs/draft-jones-json-web-token-01.html +https://self-issued.info/docs/draft-jones-json-web-token-01.html """ @@ -49,7 +49,7 @@ setup( description='JSON Web Token implementation in Python', license='MIT', keywords='jwt json web token security signing', - url='http://github.com/jpadilla/pyjwt', + url='https://github.com/jpadilla/pyjwt', packages=find_packages( exclude=["*.tests", "*.tests.*", "tests.*", "tests"] ), |