diff --git a/.travis.yml b/.travis.yml index f4c4369..b0d8772 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,9 @@ sudo: false language: python python: - 2.7 - - 3.3 - 3.4 - 3.5 + - 3.6 install: - easy_install -U setuptools - pip install -r requirements-dev.txt diff --git a/CHANGES.rst b/CHANGES.rst index 7cfdb1d..43ff0d8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,11 @@ -0.8.0 (??-??-2017) +0.8.0 (19-04-2017) ------------------ -- Add Capakey REST gateway (#45) +- Added a CapakeyRestGateway that uses the new Capakey REST service provided by + Informatie Vlaanderen. (#45, #53) - Deprecate Capakey SOAP gateway (#69) +- Fix a bug with list_huisnummers_by_perceel. (#67) +- Dropped support for Python 3.3 and added support for Python 3.6. 0.7.0 (25-01-2016) ------------------ diff --git a/docs/usage.rst b/docs/usage.rst index f35781d..ae0ffef 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -98,10 +98,10 @@ regularly, so a short caching duration could easily be one hour or even a day. See the examples folder for some more sample code. -.. _agiv: http://www.agiv.be -.. _dogpile: https://bitbucket.org/zzzeek/dogpile.cache -Be careful: the CAPAKEY SOAP gateway is deprecated. We advise you the use the CAPAKEY REST gateway instead. +.. warning:: + + Be careful: the CAPAKEY SOAP gateway is deprecated. We advise you the use the CAPAKEY REST gateway instead. Using the CAPAKEY REST gateway ------------------------------ diff --git a/setup.py b/setup.py index fe53bee..9ec86d2 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name='crabpy', - version='0.7.1', + version='0.8.0', description='Interact with AGIV webservices.', long_description=open('README.rst').read() + '\n\n' + open('CHANGES.rst').read(), @@ -45,9 +45,9 @@ 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], test_suite='nose.collector' ) diff --git a/tox.ini b/tox.ini index 40a629b..80f674c 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py33, py34, cover +envlist = py27, py34, py35, py36, cover [testenv] commands =