Skip to content

Commit

Permalink
Bump version 0.0.6 -> 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
b-long committed Jul 18, 2024
1 parent 28ff145 commit 493d517
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-golang-macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-golang-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/multiplatform-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion make_and_validate_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion only_validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <b-long@users.noreply.github.com>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)

0 comments on commit 493d517

Please sign in to comment.