Skip to content

Commit 87034f1

Browse files
authored
Merge pull request #58 from MetrodataTeam/main
support python 3.12
2 parents bc43533 + 7374e3b commit 87034f1

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

setup_lineless.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
6363
"Programming Language :: Python :: 3.9",
6464
"Programming Language :: Python :: 3.10",
6565
"Programming Language :: Python :: 3.11",
66+
"Programming Language :: Python :: 3.12",
6667
],
67-
python_requires=">=3.6,<3.12",
68+
python_requires=">=3.6,<3.13",
6869
entry_points={
6970
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
7071
},

setup_table_cls.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
5656
"Programming Language :: Python :: 3.9",
5757
"Programming Language :: Python :: 3.10",
5858
"Programming Language :: Python :: 3.11",
59+
"Programming Language :: Python :: 3.12",
5960
],
60-
python_requires=">=3.6,<3.12",
61+
python_requires=">=3.6,<3.13",
6162
)

setup_wired.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
6363
"Programming Language :: Python :: 3.9",
6464
"Programming Language :: Python :: 3.10",
6565
"Programming Language :: Python :: 3.11",
66+
"Programming Language :: Python :: 3.12",
6667
],
67-
python_requires=">=3.6,<3.12",
68+
python_requires=">=3.6,<3.13",
6869
entry_points={
6970
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
7071
},

0 commit comments

Comments
 (0)