diff --git a/.github/workflows/build-graphscope-wheels-linux.yml b/.github/workflows/build-graphscope-wheels-linux.yml index 2f13331bc8de..1aa43a82ac37 100644 --- a/.github/workflows/build-graphscope-wheels-linux.yml +++ b/.github/workflows/build-graphscope-wheels-linux.yml @@ -247,7 +247,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/download-artifact@v3 diff --git a/.github/workflows/build-graphscope-wheels-macos.yml b/.github/workflows/build-graphscope-wheels-macos.yml index 418e51c628a2..699227aee86b 100644 --- a/.github/workflows/build-graphscope-wheels-macos.yml +++ b/.github/workflows/build-graphscope-wheels-macos.yml @@ -146,7 +146,7 @@ jobs: runs-on: macos-12 strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 @@ -234,7 +234,7 @@ jobs: needs: [build-wheels, build-client-wheels] strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/download-artifact@v3 @@ -282,7 +282,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/download-artifact@v3 diff --git a/coordinator/setup.py b/coordinator/setup.py index dced1692db18..e669dc9d03ae 100644 --- a/coordinator/setup.py +++ b/coordinator/setup.py @@ -394,6 +394,7 @@ def parse_version(root, **kwargs): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="GraphScope, Graph Computations", use_scm_version={ diff --git a/python/setup.py b/python/setup.py index e2eb5e3326fb..7868a7f72057 100644 --- a/python/setup.py +++ b/python/setup.py @@ -438,6 +438,7 @@ def parse_version(root, **kwargs): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], keywords="Graph, Large-Scale, Distributed Computing", use_scm_version={