From 493d51774552f9aa5bae11d908f598d199e1e800 Mon Sep 17 00:00:00 2001 From: b-long <(none)> Date: Thu, 18 Jul 2024 19:01:53 -0400 Subject: [PATCH] Bump version 0.0.6 -> 0.0.7 --- .github/workflows/build-golang-macos.yaml | 2 +- .github/workflows/build-golang-ubuntu.yaml | 2 +- .github/workflows/multiplatform-build-test.yaml | 8 ++++---- README.md | 2 +- make_and_validate_script.sh | 2 +- only_validate.sh | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-golang-macos.yaml b/.github/workflows/build-golang-macos.yaml index ae9f84f..ecdd4df 100644 --- a/.github/workflows/build-golang-macos.yaml +++ b/.github/workflows/build-golang-macos.yaml @@ -100,7 +100,7 @@ jobs: - name: Test Python wheel run: | # Test wheel installation - pip install dist/ohpygossh-0.0.6-py3-none-any.whl + pip install dist/ohpygossh-0.0.7-py3-none-any.whl # Test wheel functionality python3 validate_ohpygossh.py diff --git a/.github/workflows/build-golang-ubuntu.yaml b/.github/workflows/build-golang-ubuntu.yaml index 3d0a8a4..3207aa8 100644 --- a/.github/workflows/build-golang-ubuntu.yaml +++ b/.github/workflows/build-golang-ubuntu.yaml @@ -127,7 +127,7 @@ jobs: - name: Test Python wheel run: | # Test wheel installation - pip install dist/ohpygossh-0.0.6-py3-none-any.whl + pip install dist/ohpygossh-0.0.7-py3-none-any.whl # DISABLED: Need to figure out Ubuntu nested VM # Test wheel functionality diff --git a/.github/workflows/multiplatform-build-test.yaml b/.github/workflows/multiplatform-build-test.yaml index fd76754..65ba251 100644 --- a/.github/workflows/multiplatform-build-test.yaml +++ b/.github/workflows/multiplatform-build-test.yaml @@ -99,13 +99,13 @@ jobs: - name: Test Python wheel run: | # Test wheel installation - pip install dist/ohpygossh-0.0.6-py3-none-any.whl + pip install dist/ohpygossh-0.0.7-py3-none-any.whl # Test wheel functionality python3 validate_ohpygossh.py # Name properly - mv dist/ohpygossh-0.0.6-py3-none-any.whl dist/ohpygossh-0.0.6-none-any-macosx_11_0_x86_64.whl + mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-macosx_11_0_x86_64.whl - name: Upload artifacts uses: actions/upload-artifact@v4 @@ -193,13 +193,13 @@ jobs: - name: Test Python wheel run: | # Test wheel installation - pip install dist/ohpygossh-0.0.6-py3-none-any.whl + pip install dist/ohpygossh-0.0.7-py3-none-any.whl # Test wheel functionality python3 validate_ohpygossh.py # Name properly - mv dist/ohpygossh-0.0.6-py3-none-any.whl dist/ohpygossh-0.0.6-none-any-manylinux2014_x86_64.whl + mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-manylinux2014_x86_64.whl - name: Upload artifacts uses: actions/upload-artifact@v4 diff --git a/README.md b/README.md index d404e9e..af1e93b 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ and/or cause debate without offerinig solutions. ## Build wheel The following steps should produce a wheel, -located at `dist/ohpygossh-0.0.6-py3-none-any.whl` +located at `dist/ohpygossh-0.0.7-py3-none-any.whl` ```bash ./make_and_validate_script.sh diff --git a/make_and_validate_script.sh b/make_and_validate_script.sh index 6cf37c8..3f3cf2a 100755 --- a/make_and_validate_script.sh +++ b/make_and_validate_script.sh @@ -39,7 +39,7 @@ python3 -m pip install --upgrade setuptools wheel python3 setup.py bdist_wheel # Prove that the wheel can be installed -pip install dist/ohpygossh-0.0.6-py3-none-any.whl +pip install dist/ohpygossh-0.0.7-py3-none-any.whl # Validate functionality python3 validate_ohpygossh.py diff --git a/only_validate.sh b/only_validate.sh index fa8c4ac..f16ec1f 100755 --- a/only_validate.sh +++ b/only_validate.sh @@ -30,7 +30,7 @@ fi source .venv/bin/activate # Prove that the wheel can be installed -pip install dist/ohpygossh-0.0.6-py3-none-any.whl +pip install dist/ohpygossh-0.0.7-py3-none-any.whl # Validate functionality python validate_ohpygossh.py diff --git a/pyproject.toml b/pyproject.toml index 6ca0553..a47a744 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "gohpygossh" # Should match 'setup.py' version number (used for gopy/pybindgen) -version = "0.0.6" +version = "0.0.7" description = "" authors = ["b-long "] readme = "README.md" diff --git a/setup.py b/setup.py index 0d467f8..604b82a 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,6 @@ py_modules = ["ohpygossh.gohpygossh"], package_data={"ohpygossh": ["*.so"]}, # Should match 'pyproject.toml' version number - version="0.0.6", + version="0.0.7", include_package_data=True, )