Skip to content

Commit

Permalink
switched off wheel building (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
aryan26roy authored Jul 24, 2021
1 parent b99a76c commit 06034c0
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,30 @@ jobs:
with:
path: dist/*.tar.gz

build_wheels:
name: Wheel on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest] #, macos-latest]

steps:
- uses: actions/checkout@v1
with:
submodules: recursive

- uses: pypa/[email protected]
env:
CIBW_ARCHS: auto64

- name: Upload wheels
uses: actions/upload-artifact@v2
with:
path: wheelhouse/*.whl
#build_wheels:
#name: Wheel on ${{ matrix.os }}
#runs-on: ${{ matrix.os }}
#strategy:
#fail-fast: false
#matrix:
#os: [ubuntu-latest] #, macos-latest]

#steps:
#- uses: actions/checkout@v1
#with:
#submodules: recursive

#- uses: pypa/[email protected]
#env:
#CIBW_ARCHS: auto64

#- name: Upload wheels
#uses: actions/upload-artifact@v2
#with:
#path: wheelhouse/*.whl

upload_all:
needs: [build_wheels, make_sdist]
needs: [make_sdist] #[build_wheels,
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'

Expand Down
2 changes: 1 addition & 1 deletion src/fastjet/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import re

__version__ = "3.3.4.0rc3"
__version__ = "3.3.4.0rc4"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down

0 comments on commit 06034c0

Please sign in to comment.