Skip to content

Commit f36dff4

Browse files
committed
Tested with Python 3.13.
1 parent 1f77606 commit f36dff4

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
8.10.5 2025-02-21
2+
* Tested with Python 3.13.
3+
14
8.10.4 2024-10-04
25
* Tested with CPython and PyPy.
36

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 1.0
22
Name: IP2Location
3-
Version: 8.10.4
3+
Version: 8.10.5
44
Summary: Python API for IP2Location database
55
Home-page: http://www.ip2location.com
66
Author: IP2Location

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IP2Location 8.10.4
1+
# IP2Location Python Library
22

33
![PyPI](https://img.shields.io/pypi/v/IP2Location)
44
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Location)

docs/source/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# IP2Location Python
1+
# IP2Location Python Library
22

33
![PyPI](https://img.shields.io/pypi/v/IP2Location)
44
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Location)

sample.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@
7272
print(country.get_country_info("US"))
7373

7474
# Get region code by country code and region
75-
region = IP2Location.Region(os.path.join("data", "IP2LOCATION-ISO3166-2.CSV")
75+
region = IP2Location.Region(os.path.join("data", "IP2LOCATION-ISO3166-2.CSV"))
7676
print(region.get_region_code("US", "California"))

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="IP2Location",
8-
version="8.10.4",
8+
version="8.10.5",
99
author="IP2Location",
1010
author_email="[email protected]",
1111
description="This is an IP geolocation library that enables the user to find the country, region, city, latitude and longitude, ZIP code, time zone, ISP, domain name, area code, weather info, mobile info, elevation, usage type, address type and IAB category from an IP address. It supports both IPv4 and IPv6 lookup.",
@@ -26,6 +26,7 @@
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
2828
"Programming Language :: Python :: 3.12",
29+
"Programming Language :: Python :: 3.13",
2930
"Programming Language :: Python :: Implementation :: CPython",
3031
"Programming Language :: Python :: Implementation :: PyPy",
3132
"License :: OSI Approved :: MIT License",

0 commit comments

Comments
 (0)