Skip to content

Commit

Permalink
Merge pull request #647 from xmos/update_version
Browse files Browse the repository at this point in the history
Update version
  • Loading branch information
panickal-xmos authored Aug 18, 2022
2 parents 4778e85 + bac8507 commit facf4c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:


manylinux-release-wheel:
name: Build release wheels for manylinux2010
name: Build release wheels for manylinux2014
runs-on: ubuntu-18.04
strategy:
matrix:
Expand All @@ -148,7 +148,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build manylinux2010 wheels
- name: Build manylinux2014 wheels
# The SETUPTOOLS_SCM_PRETEND_VERSION var is passed via docker to the
# python setup.py script to add the version info for the wheel file.
#
Expand All @@ -164,7 +164,7 @@ jobs:
python -m pip install auditwheel --no-cache-dir
cd python
for f in dist/*.whl; do
auditwheel repair --plat manylinux2010_x86_64 $f
auditwheel repair --plat manylinux2014_x86_64 $f
done
- uses: actions/upload-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:

manylinux-release-wheel:
if: github.event.pull_request.merged == true
name: Build release wheels for manylinux2010
name: Build release wheels for manylinux2014
runs-on: ubuntu-18.04
strategy:
matrix:
Expand All @@ -137,7 +137,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build manylinux2010 wheels
- name: Build manylinux2014 wheels
# auditwheel requires patchelf and repairs the created wheel file to
# be compatible for manylinux.
run: |
Expand All @@ -150,7 +150,7 @@ jobs:
python -m pip install auditwheel --no-cache-dir
cd python
for f in dist/*.whl; do
auditwheel repair --plat manylinux2010_x86_64 $f
auditwheel repair --plat manylinux2014_x86_64 $f
done
- uses: actions/upload-artifact@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:


manylinux-release-wheel:
name: Build release wheels for manylinux2010
name: Build release wheels for manylinux2014
runs-on: ubuntu-18.04
strategy:
matrix:
Expand All @@ -150,7 +150,7 @@ jobs:
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Build manylinux2010 wheels
- name: Build manylinux2014 wheels
# The SETUPTOOLS_SCM_PRETEND_VERSION var is passed via docker to the
# python setup.py script to add the version info for the wheel file.
#
Expand All @@ -166,7 +166,7 @@ jobs:
python -m pip install auditwheel --no-cache-dir
cd python
for f in dist/*.whl; do
auditwheel repair --plat manylinux2010_x86_64 $f
auditwheel repair --plat manylinux2014_x86_64 $f
done
- uses: actions/upload-artifact@v2
Expand Down
2 changes: 1 addition & 1 deletion experimental/xformer/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace xformer {

unsigned majorVersion = 0;
unsigned minorVersion = 1;
unsigned patchVersion = 8;
unsigned patchVersion = 9;

} // namespace xformer

Expand Down

0 comments on commit facf4c9

Please sign in to comment.