Skip to content

Commit

Permalink
Merge pull request #56 from feltech/release/1.0.0-alpha.9
Browse files Browse the repository at this point in the history
[Release] Bump version to 1.0.0-alpha.9
  • Loading branch information
feltech authored Jul 20, 2023
2 parents aaaeb2a + 5dad9b7 commit 2665819
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 45 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,11 @@ jobs:
with:
python-version: "3.9"

- name: Download wheels from commit OpenAssetIO feature branch
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-wheels.yml
workflow_conclusion: success
name: openassetio-wheels
repo: OpenAssetIO/OpenAssetIO
path: deps

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel
# Use wheels from feature branch for intermediate testing
python -m pip install ./deps/openassetio-*cp39*-manylinux_*_x86_64.whl
# python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
- name: Build wheels
run: pip wheel --no-deps --wheel-dir wheelhouse .
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,20 +13,9 @@ jobs:
with:
python-version: 3.9

- name: Download wheels from commit OpenAssetIO feature branch
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-wheels.yml
workflow_conclusion: success
name: openassetio-wheels
repo: OpenAssetIO/OpenAssetIO
path: deps

- name: Install dependencies
run: |
# Use wheels from feature branch for intermediate testing
python -m pip install ./deps/openassetio-*cp39*-manylinux_*_x86_64.whl
# python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
python -m pip install -r tests/requirements.txt
python -m pip install .
Expand Down
22 changes: 3 additions & 19 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,15 @@ jobs:
strategy:
fail-fast: false
matrix:
# Constrain to single version to simplify install from wheels
os: ['ubuntu-latest']
python: ['3.7']
# os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
# python: ['3.7', '3.9', '3.10']
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
python: ['3.7', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3

- name: Download wheels from OpenAssetIO main
uses: dawidd6/action-download-artifact@v2
with:
workflow: build-wheels.yml
workflow_conclusion: success
name: openassetio-wheels
repo: OpenAssetIO/OpenAssetIO
path: deps
branch: main

- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: |
# Use wheels from feature branch for intermediate testing
python -m pip install ./deps/openassetio-*cp37*-manylinux_*_x86_64.whl
# python -m pip install -r requirements.txt
python -m pip install -r requirements.txt
python -m pip install -r tests/requirements.txt
python -m pip install .
python -m pytest -v ./tests
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release Notes
=============

v1.0.0-alpha.x
v1.0.0-alpha.9
--------------

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "openassetio-manager-bal"
version = "1.0.0a8"
version = "1.0.0a9"
requires-python = ">=3.7"

authors = [
Expand Down

0 comments on commit 2665819

Please sign in to comment.