Fix http link to docs in pypi

This commit is contained in:
Régis Behmo 2019-02-12 17:43:01 +01:00
parent 3f105a0ef3
commit bdc93769f0
2 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
# Latest
- [Minor] Fix non-https link to documentation in pypi
- [Minor] Fix `createuser` documentation
## 3.0.3 (2019-02-12) ## 3.0.3 (2019-02-12)
- [Bugfix] Add missing template data to pypi package - [Bugfix] Add missing template data to pypi package

View File

@ -16,7 +16,7 @@ setup(
version=about["__version__"], version=about["__version__"],
url="http://docs.tutor.overhang.io/", url="http://docs.tutor.overhang.io/",
project_urls={ project_urls={
"Documentation": "https://docs.tutor.overhang.io/", "Documentation": "http://docs.tutor.overhang.io/",
"Code": "https://github.com/regisb/tutor", "Code": "https://github.com/regisb/tutor",
"Issue tracker": "https://github.com/regisb/tutor/issues", "Issue tracker": "https://github.com/regisb/tutor/issues",
}, },