Skip to content

Commit

Permalink
update owslib to 0.19.2 (#89)
Browse files Browse the repository at this point in the history
* update owslib to 0.19.2

* drop support for python 3.5 as owslib did
  • Loading branch information
David Caron authored Mar 16, 2020
1 parent da7b41b commit 8293318
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ os:
# - osx
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ Changes
Unreleased
==========

Changes:
--------

- Update owslib to 0.19.2
- Drop support for python 3.5

1.3.0 (2020-03-10)
==================

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ For more details, see `Configuration`_ section.
* - releases
- | |version| |commits-since| |license|

.. |py_ver| image:: https://img.shields.io/badge/python-2.7%2C%203.5%2B-blue.svg
:alt: Requires Python 2.7, 3.5+
.. |py_ver| image:: https://img.shields.io/badge/python-2.7%2C%203.6%2B-blue.svg
:alt: Requires Python 2.7, 3.6+
:target: https://www.python.org/getit

.. |commits-since| image:: https://img.shields.io/github/commits-since/crim-ca/weaver/1.3.0.svg
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jsonschema>=3.0.1
lxml
mako
owslib<0.19.0; python_version < "3"
owslib>=0.19.1; python_version >= "3"
owslib>=0.19.2; python_version >= "3"
# fix tagged owslib (https://github.com/crim-ca/weaver/issues/62)
owslib>0.19.0; python_version >= "3.8"
pymongo
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
classifiers=[
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -45,7 +44,7 @@
package_data={"": ["*.mako"]},
zip_safe=False,
test_suite="tests",
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
python_requires=">=2.7, >=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4",
install_requires=requirements,
entry_points={
"paste.app_factory": [
Expand Down

0 comments on commit 8293318

Please sign in to comment.