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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ message("* * * * * * * * * * * * * * * * * * * * * * * * * * * * *")

cmake_minimum_required(VERSION 3.5.0)

project(CGraph VERSION 3.2.3)
project(CGraph VERSION 3.2.4)

if(NOT DEFINED CMAKE_CXX_STANDARD)
# CGraph默认使用C++11版本,推荐使用C++17版本。暂不支持C++11以下版本
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,9 @@ if __name__ == '__main__':
* 优化 `message` 功能
* 优化 稳定性

[2026.05.10 - v3.2.4 - Chunel]
* 优化 `pycgraph` 功能

</details>

------------
Expand Down
18 changes: 13 additions & 5 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import pybind11

__PYCGRAPH_NAME__ = "pycgraph"
__PYCGRAPH_VERSION__ = "3.2.3"
__PYCGRAPH_VERSION__ = "3.2.4"
__PYCGRAPH_AUTHOR__ = "Chunel"
__PYCGRAPH_AUTHOR_EMAIL__ = "chunel@foxmail.com"
__PYCGRAPH_DESCRIPTION__ = "CGraph with python api wrapper by pybind11"
Expand All @@ -22,10 +22,15 @@
__PYCGRAPH_KEYWORDS__ = [__PYCGRAPH_NAME__,
"CGraph",
"dag",
"parallel",
"airflow",
"hpc",
"graph-computing",
"taskflow",
"workflow",
"scheduler",
"concurrency",
"pipeline",
"cross-platform",
"lightweight",
"langgraph",
"pybind11"]

_sources = ['PyCGraph.cpp'] + glob.glob("../src/**/*.cpp", recursive=True)
Expand All @@ -39,9 +44,9 @@
Extension(
name=__PYCGRAPH_NAME__,
sources=_sources,
extra_link_args=_extra_link_args,
extra_compile_args=_extra_compile_args,
include_dirs=_include_dirs,
extra_link_args=_extra_link_args,
),
]

Expand Down Expand Up @@ -76,5 +81,8 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
)
2 changes: 1 addition & 1 deletion xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set_project("CGraph")

-- set project version
set_version("3.2.3")
set_version("3.2.4")

-- set language: c++11
set_languages("c++11")
Expand Down
Loading