diff --git a/.gitignore b/.gitignore index d395331..cc9f586 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ build/ .cache/ README.rst .vscode/launch.json +.venv diff --git a/openbadges/verifier/server/templates/index.html b/openbadges/verifier/server/templates/index.html index 7ec8f76..15512a1 100644 --- a/openbadges/verifier/server/templates/index.html +++ b/openbadges/verifier/server/templates/index.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} -
+ Open Badges Verification Request
diff --git a/openbadges/version.py b/openbadges/version.py index 60222ef..a35f619 100644 --- a/openbadges/version.py +++ b/openbadges/version.py @@ -1 +1 @@ -VERSION = (1, 1, 2) +VERSION = (1, 1, 4) diff --git a/requirements.txt b/requirements.txt index 2075009..074c1af 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,25 +1,25 @@ # Duplicates from setup.py aniso8601>=1.2.0 -future==0.16.0 -jsonschema==2.6.0 -language-tags==0.4.3 -openbadges_bakery==1.1.0 -pycryptodome==3.6.6 +future==1.0.0 +jsonschema==4.25.1 +language-tags==1.2.0 +openbadges_bakery==2.0.0 +pycryptodome>=3.6.6 pydux==0.2.2 -PyLD==0.7.1 -python-jose==3.0.1 -python-mimeparse==1.6.0 -pytz==2017.2 +PyLD==2.0.4 +python-jose==3.5.0 +python-mimeparse==2.0.0 +pytz >= 2017.2 requests >= 2.13 requests_cache >= 0.4.13 -rfc3986==0.4.1 -validators==0.11.2 +rfc3986==2.0.0 +validators==0.35.0 # Development dependencies -pypandoc==1.4 +pypandoc==1.15 pytest -responses==0.5.1 +responses==0.25.8 # Server dependencies -Flask==0.12.1 -gunicorn==19.7.1 +Flask==3.1.2 +gunicorn==23.0.0 diff --git a/setup.py b/setup.py index 78d3d38..67da82d 100644 --- a/setup.py +++ b/setup.py @@ -51,17 +51,17 @@ ], install_requires=[ 'aniso8601>=1.2.0', - 'Click == 6.7', - 'future==0.16.0', + 'Click >= 6.7', + 'future==1.0.0', 'jsonschema==2.6.0', 'language-tags==0.4.3', 'openbadges-bakery>=1.1.0', - 'pycryptodome==3.6.6', + 'pycryptodome>=3.6.6', 'pydux==0.2.2', 'PyLD==0.7.1', - 'python-jose==3.0.1', + 'python-jose==3.5.0', 'python-mimeparse==1.6.0', - 'pytz==2017.2', + 'pytz >= 2017.2', 'requests >= 2.13', 'requests_cache==0.4.13', 'rfc3986==0.4.1',