Skip to content

Commit

Permalink
spec build for window
Browse files Browse the repository at this point in the history
  • Loading branch information
Badr-MOUFAD committed Jul 26, 2023
1 parent 91edcc5 commit e86f574
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,6 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: check conditionals
if: matrix.os == 'ubuntu-latest'
run: echo "Ubunto"

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
Expand All @@ -37,12 +33,18 @@ jobs:
pip install numpy==1.21
pip install -e .
- name: Build source dist
if: matrix.os == 'ubuntu-latest'
- name: Build source dist for ubuntu and macOS
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
run: |
python3 -m pip install --upgrade build
python3 -m build --sdist
- name: Build source dist for windows
if: matrix.os == 'windows-latest'
run: |
py -m pip install --upgrade build
py -m build --sdist
- name: Build wheels
uses: pypa/cibuildwheel@v2.14.1
env:
Expand Down
2 changes: 1 addition & 1 deletion celer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
MultiTaskLasso, MultiTaskLassoCV)


__version__ = '0.7.3dev2'
__version__ = '0.7.3dev3'

0 comments on commit e86f574

Please sign in to comment.