From 60ec849280203b9585b76c350d1a35ee7525c7c6 Mon Sep 17 00:00:00 2001 From: Alexander-Belyi <78016743+Alexander-Belyi@users.noreply.github.com> Date: Tue, 13 Apr 2021 00:46:22 +0300 Subject: [PATCH 1/2] Trying to fix sdist release problem --- .github/workflows/pre-release.yml | 2 ++ .github/workflows/release.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 33eea3e..cfc9395 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -72,6 +72,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + submodules: recursive - name: Set up Python 3.7 uses: actions/setup-python@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7f67c1f..1035ef8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,6 +72,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + submodules: recursive - name: Set up Python 3.7 uses: actions/setup-python@v2 From c137483830712372b69b6415a249dcbbd9e12125 Mon Sep 17 00:00:00 2001 From: Philipp Date: Mon, 12 Apr 2021 18:32:37 -0400 Subject: [PATCH 2/2] bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8ce0712..077740e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycombo" -version = "0.1.05" +version = "0.1.06" description = "Python wrapper around Combo network partitioning algorythm (C++)" authors = ["Philipp "] license = "MIT"