Skip to content

Commit 5adc2a5

Browse files
Tested with Python 3.12
- Updated setup.py for the version number and Python 3.12 compatibility. - Added gitignore file.
1 parent 2a7500e commit 5adc2a5

4 files changed

Lines changed: 15 additions & 1 deletion

File tree

.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
-6.56 KB
Binary file not shown.
-7.12 KB
Binary file not shown.

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="ip2location-python-csv-converter",
13-
version="1.2.3",
13+
version="1.2.4",
1414
description="Python script to converts IP2Location CSV database into IP range or CIDR format.",
1515
long_description_content_type="text/markdown",
1616
long_description=long_description,
@@ -38,6 +38,9 @@
3838
"Programming Language :: Python :: 3.7",
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",
41+
"Programming Language :: Python :: 3.10",
42+
"Programming Language :: Python :: 3.11",
43+
"Programming Language :: Python :: 3.12",
4144
"License :: OSI Approved :: MIT License",
4245
"Operating System :: OS Independent",
4346
],

0 commit comments

Comments
 (0)