Skip to content

Commit

Permalink
PKG: make sure that metapensiero/__init__.py is present
Browse files Browse the repository at this point in the history
for some reason the package doesn't include that
  • Loading branch information
peircej committed Jul 6, 2023
1 parent 176ede8 commit 0d05a46
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,12 @@ jobs:
fi
mypip install -U pip
mypip install -U wheel
mypip install .[building] # install self with building extras
mypip install .[tests] # install self with tests extras
mypip install ".[building]" # install self with building extras
mypip install ".[tests]" # install self with tests extras
- name: Build binary (Windows)
if: runner.os == 'Windows'
run:
ls -al ./building;
bash ./building/buildWinDistributions.sh

- name: Build binary (MacOS)
Expand All @@ -96,7 +95,7 @@ jobs:
CODESIGN_PASSWORD: ${{ secrets.OST_APPLE_PWORD }}
CODESIGN_ID: ${{ secrets.OST_APPLE_ID }}
run:
ls -al ./building;
touch py/lib/python3.10/site-packages/metapensiero/__init__.py # create missing file
sh ./building/buildAppMacOS.sh $CODESIGN_ID $CODESIGN_PASSWORD

- name: Upload builds with googleapi
Expand Down

0 comments on commit 0d05a46

Please sign in to comment.