Skip to content

Commit

Permalink
Bump version 0.0.7 -> 0.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
b-long committed Jul 19, 2024
1 parent ad178d6 commit b939a6e
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-py3-none-any.whl
# Test wheel functionality
python3 validate_ohpygossh.py
# Name properly
mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-macosx_11_0_x86_64.whl
mv dist/ohpygossh-0.0.8-py3-none-any.whl dist/ohpygossh-0.0.8-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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-py3-none-any.whl
# Test wheel functionality
python3 validate_ohpygossh.py
# Name properly
mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-manylinux2014_x86_64.whl
mv dist/ohpygossh-0.0.8-py3-none-any.whl dist/ohpygossh-0.0.8-none-any-manylinux2014_x86_64.whl
- name: Upload artifacts
uses: actions/upload-artifact@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/multiplatform-build.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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-py3-none-any.whl
# Test wheel functionality
python3 validate_ohpygossh.py
# Name properly
mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-macosx_11_0_x86_64.whl
mv dist/ohpygossh-0.0.8-py3-none-any.whl dist/ohpygossh-0.0.8-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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-py3-none-any.whl
# Test wheel functionality
python3 validate_ohpygossh.py
# Name properly
mv dist/ohpygossh-0.0.7-py3-none-any.whl dist/ohpygossh-0.0.7-none-any-manylinux2014_x86_64.whl
mv dist/ohpygossh-0.0.8-py3-none-any.whl dist/ohpygossh-0.0.8-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.7-py3-none-any.whl`
located at `dist/ohpygossh-0.0.8-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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-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.7-py3-none-any.whl
pip install dist/ohpygossh-0.0.8-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.7"
version = "0.0.8"
description = ""
authors = ["b-long <[email protected]>"]
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.7",
version="0.0.8",
include_package_data=True,
)

0 comments on commit b939a6e

Please sign in to comment.