Skip to content

Commit 8dd62b8

Browse files
authored
version 2.3.0 (#50)
1 parent 4f3e5ef commit 8dd62b8

4 files changed

Lines changed: 12 additions & 11 deletions

File tree

Changes.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
unreleased
1+
v2.3.0 Tue 04 Jul 2023
22
Batch example: Raise exception when API key fails (quota, missing API key)
33
Batch example: Raise exception when input file contains an empty line. Better
44
early than risking errors later during the async geocoding
55
Batch example: The CSV '1, "street,city"' were parsed as 3 columns, not the
66
expected 2 columns
77
Test suite: Switched from Travis-CI to Github Actions
8+
Dependencies: Requests 2.26->2.31, backoff 1.10->2.2.1, because only those say to support Python 3.10
89

910
v2.2.0 Fri 05 May 2023
1011
Using requests > 2.26 , pyopenssl no longer a dependency

opencage/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
""" Base module for OpenCage stuff. """
22

3-
__author__ = "OpenCage Data"
4-
__email__ = 'info@opencagedata.com'
5-
__version__ = '1.2.2'
3+
__author__ = "OpenCage GmbH"
4+
__email__ = 'support@opencagedata.com'
5+
__version__ = '2.3.0'

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
setup(
3030
name="opencage",
31-
version="2.2.0",
31+
version="2.3.0",
3232
description="Wrapper module for the OpenCage Geocoder API",
3333
long_description=LONG_DESCRIPTION,
3434
long_description_content_type='text/markdown',
@@ -57,13 +57,13 @@
5757
'Topic :: Utilities'
5858
],
5959
install_requires=[
60-
'Requests>=2.26.0',
61-
'backoff>=1.10.0'
60+
'Requests>=2.31.0',
61+
'backoff>=2.2.1'
6262
],
6363
test_suite='pytest',
6464
tests_require=[
65-
'httpretty>=0.9.6',
66-
'pylint==2.15.9',
67-
'pytest>=6.0'
65+
'httpretty>=1.1.4',
66+
'pylint==2.17.4',
67+
'pytest>=7.4.0'
6868
],
6969
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ commands =
2222
usedevelop = True
2323
deps =
2424
httpretty
25-
pylint==2.15.9
25+
pylint==2.17.4
2626
pytest
2727
commands =
2828
pylint opencage examples/demo.py setup.py test

0 commit comments

Comments
 (0)