Compare commits

...

2 Commits

Author SHA1 Message Date
1572e11da8 Bump version to 1.1.6 2019-07-05 08:49:26 +00:00
ea01dc7cb2 Allow even more types of files 2019-07-05 08:48:43 +00:00
3 changed files with 4 additions and 3 deletions

View File

@ -33,6 +33,7 @@ class ShibbolethAuthenticator:
"text/xml",
"text/xml;charset=UTF-8",
"text/plain",
"text/plain;charset=UTF-8",
"image/jpeg",
"image/png",
]

View File

@ -10,7 +10,7 @@ test it though).
To install PFERD or update your installation to the latest version, run this
wherever you want to install/have installed PFERD:
```
$ pip install git+https://github.com/Garmelon/PFERD@v1.1.5
$ pip install git+https://github.com/Garmelon/PFERD@v1.1.6
```
The use of [venv](https://docs.python.org/3/library/venv.html) is recommended.
@ -25,7 +25,7 @@ $ mkdir Vorlesungen
$ cd Vorlesungen
$ python3 -m venv .
$ . bin/activate
$ pip install git+https://github.com/Garmelon/PFERD@v1.1.5
$ pip install git+https://github.com/Garmelon/PFERD@v1.1.6
$ curl -O https://raw.githubusercontent.com/Garmelon/PFERD/master/example_config.py
$ python3 example_config.py
$ deactivate

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="PFERD",
version="1.1.5",
version="1.1.6",
packages=["PFERD"],
install_requires=[
"requests>=2.21.0",