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/version.py b/openbadges/version.py index 60222ef..5e8d792 100644 --- a/openbadges/version.py +++ b/openbadges/version.py @@ -1 +1 @@ -VERSION = (1, 1, 2) +VERSION = (1, 1, 3) diff --git a/requirements.txt b/requirements.txt index 2075009..109fd68 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,12 +4,12 @@ future==0.16.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-mimeparse==1.6.0 -pytz==2017.2 +pytz >= 2017.2 requests >= 2.13 requests_cache >= 0.4.13 rfc3986==0.4.1 diff --git a/setup.py b/setup.py index 78d3d38..9fd341f 100644 --- a/setup.py +++ b/setup.py @@ -51,17 +51,17 @@ ], install_requires=[ 'aniso8601>=1.2.0', - 'Click == 6.7', + 'Click >= 6.7', 'future==0.16.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-mimeparse==1.6.0', - 'pytz==2017.2', + 'pytz >= 2017.2', 'requests >= 2.13', 'requests_cache==0.4.13', 'rfc3986==0.4.1',