Skip to content

Commit 7d8ffd5

Browse files
committed
Tested Python 3.12
- Updated setup.py for Python 3.12 compatibility. - Add gitignore file.
1 parent b91f9e6 commit 7d8ffd5

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.idea/
2+
.vscode/
3+
.venv*/
4+
venv*/
5+
__pycache__/
6+
dist/
7+
.coverage*
8+
htmlcov/
9+
.tox/
10+
docs/_build/
11+
*.egg-info

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# IP2Location 8.10.2
1+
# IP2Location 8.10.3
22

33
![PyPI](https://img.shields.io/pypi/v/IP2Location)
44
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Location)
5+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ip2location)
56

67
This is a IP2Location Python library that enables the user to find the country, region or state, city, latitude and longitude, ZIP code, time zone, Internet Service Provider (ISP) or company name, domain name, net speed, area code, weather station code, weather station name, mobile country code (MCC), mobile network code (MNC) and carrier brand, elevation, usage type, address type and IAB category by IP address or hostname originates from.
78

docs/source/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
![PyPI](https://img.shields.io/pypi/v/IP2Location)
44
![PyPI - Downloads](https://img.shields.io/pypi/dm/IP2Location)
5+
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/ip2location)
6+
57

68
This is a [IP2Location](https://www.ip2location.com/) Python library that enables the user to find the country, region or state, district, city, latitude, longitude, ZIP code, time zone, ISP, domain name, connection speed, IDD code, area code, weather station code, weather station name, MNC, MCC, mobile brand, elevation, usage type, address type, IAB category and ASN by IP address or hostname originates from. The library reads the geo location information from **IP2Location BIN database**.
79

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.2",
8+
version="8.10.3",
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.",
@@ -25,6 +25,7 @@
2525
"Programming Language :: Python :: 3.9",
2626
"Programming Language :: Python :: 3.10",
2727
"Programming Language :: Python :: 3.11",
28+
"Programming Language :: Python :: 3.12",
2829
"License :: OSI Approved :: MIT License",
2930
"Operating System :: OS Independent",
3031
],

0 commit comments

Comments
 (0)