Skip to content

Commit

Permalink
Merge pull request #58 from MetrodataTeam/main
Browse files Browse the repository at this point in the history
support python 3.12
  • Loading branch information
Joker1212 authored Oct 28, 2024
2 parents bc43533 + 7374e3b commit 87034f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion setup_lineless.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
Expand Down
3 changes: 2 additions & 1 deletion setup_table_cls.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
)
3 changes: 2 additions & 1 deletion setup_wired.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,9 @@ def read_txt(txt_path: Union[Path, str]) -> List[str]:
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.6,<3.12",
python_requires=">=3.6,<3.13",
entry_points={
"console_scripts": [f"{MODULE_NAME}={MODULE_NAME}.main:main"],
},
Expand Down

0 comments on commit 87034f1

Please sign in to comment.