Skip to content

Commit

Permalink
Merge 3d810f3 into 60fca5e
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego committed May 6, 2020
2 parents 60fca5e + 3d810f3 commit 91cdb31
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Expand Up @@ -19,9 +19,13 @@ cache:
- $HOME/.cache/pip

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

matrix:
allow_failures:
- python: 3.8

env:
- REQUIREMENTS=lowest
Expand Down Expand Up @@ -49,7 +53,6 @@ deploy:
password:
secure: "iFwYlgl8UsWnh+oxvl4pmW9eBB3JrLC0hyPDfurxZIUaAHolTazbWhEPLmp4rh6WF3WlfVzCIgQJ+VX2up3kJk6i/JJE2RyhTYCMwLb8jtJWhH0KUoaD1LqP0kpos6keyuyG1Y3n5OxVYWXObVsVgo0i0IAw4xp+/YFFQImK4dc="
distributions: "sdist bdist_wheel"
skip_existing: true
on:
tags: true
python: "2.7"
condition: $REQUIREMENTS = release
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,5 +1,10 @@
Changes
=======

Version v1.0.2 (released TBD):

- Deprecated Python versions lower than 3.6.0. Now supporting 3.6.0 and 3.7.0

Version v1.0.1 (released 2018-03-08):

- Fixes schema location url for DataCite v4.1
Expand Down
2 changes: 1 addition & 1 deletion datacite/version.py
Expand Up @@ -20,4 +20,4 @@
# Do not change the format of this next line. Doing so risks breaking
# setup.py and docs/conf.py

__version__ = "1.0.1"
__version__ = "1.0.2"
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -48,7 +48,7 @@

install_requires = [
'jsonschema>=3.0.0',
'lxml>=3.5.0',
'lxml>=4.3.5',
'requests>=2.4.1',
]

Expand Down Expand Up @@ -77,11 +77,9 @@
setup_requires=setup_requires,
tests_require=tests_require,
classifiers=[
'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',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
Expand Down

0 comments on commit 91cdb31

Please sign in to comment.