Skip to content

Commit

Permalink
Merge 60826d6 into 80ab11f
Browse files Browse the repository at this point in the history
  • Loading branch information
ppanero committed May 8, 2020
2 parents 80ab11f + 60826d6 commit a3de14d
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -17,6 +17,7 @@ matrix:
fast_finish: true
allow_failures:
- env: REQUIREMENTS=devel
- python: "3.8"

cache:
- pip
Expand All @@ -27,8 +28,9 @@ env:
- REQUIREMENTS=devel

python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"

before_install:
- "nvm install 6; nvm use 6"
Expand Down Expand Up @@ -56,6 +58,4 @@ deploy:
distributions: "sdist bdist_wheel"
on:
tags: true
python: "2.7"
repo: inveniosoftware/invenio-jsonschemas
condition: $DEPLOY = true
skip_existing: true
7 changes: 7 additions & 0 deletions CHANGES.rst
Expand Up @@ -8,6 +8,13 @@
Changes
=======

Version 1.0.2 (released 2020-05-08)

- Set maximum version of jsonresolver to 0.3.0 due to Werkzeug
import incompatibility.
- Set minimum version of Flask to 1.0.4.
- Deprecated Python versions lower than 3.6.0. Now supporting 3.6.0 and 3.7.0

Version 1.0.1 (released 2019-09-04)

- Adds config ``JSONSCHEMAS_SCHEMAS`` to whitelist entrypoint names
Expand Down
2 changes: 1 addition & 1 deletion invenio_jsonschemas/version.py
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = '1.0.1'
__version__ = '1.0.2'
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -19,7 +19,7 @@
'check-manifest>=0.25',
'coverage>=4.0',
'isort>=4.2.2',
'jsonresolver[jsonschema]>=0.2.1',
'jsonschema>=2.5.1',
'pydocstyle>=2.0.0',
'pytest-cov>=1.8.0',
'pytest-pep8>=1.0.6',
Expand Down Expand Up @@ -48,8 +48,9 @@
]

install_requires = [
'Flask>=0.11.1',
'Flask>=1.0.4',
'jsonref>=0.1',
'jsonresolver>=0.2.1,<0.3.0',
]

packages = find_packages()
Expand Down Expand Up @@ -98,10 +99,9 @@
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Development Status :: 5 - Production/Stable',
],
Expand Down

0 comments on commit a3de14d

Please sign in to comment.