Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/pip4win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ jobs:
fail-fast: false
matrix:
platform: [windows-latest]
python-version: ["3.6",
"3.7",
"3.8",
python-version: ["3.8",
"3.9",
"3.10",
"3.11",
Expand Down
2 changes: 1 addition & 1 deletion COMPILE.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
---

### Python 版本
* 用户可以通过命令安装(推荐)
* MacOS 和 Windows 用户可以通过命令安装(推荐)
```shell
$ pip3 install PyCGraph # 直接通过 pip3 安装
$ python3 -c "import PyCGraph" # 验证 PyCGraph 成功安装
Expand Down
3 changes: 1 addition & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
zip_safe=False,
long_description=__PYCGRAPH_LONG_DESCRIPTION__,
long_description_content_type="text/markdown",
python_requires=">=3.6",
python_requires=">=3.8",
keywords=__PYCGRAPH_KEYWORDS__,
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand All @@ -66,7 +66,6 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
Expand Down
Loading