Skip to content

Commit

Permalink
Fix MANIFEST.in warning (#2297)
Browse files Browse the repository at this point in the history
* Fix MANIFEST.in

Fixes `warning: manifest_maker: MANIFEST.in, line 13: path '**/build/' cannot end with '/'`

e.g. https://github.com/AMICI-dev/AMICI/actions/runs/7970974169/job/21759690743?pr=2296#step:14:163

* ..

* ..
  • Loading branch information
dweindl authored Feb 21, 2024
1 parent 3573131 commit 3673940
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_protected.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
dockerhub:
name: Deploy Dockerhub
if: github.repository_owner == 'AMICI-dev'
if: github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-22.04

strategy:
Expand Down
2 changes: 1 addition & 1 deletion python/sdist/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include version.txt
include LICENSE.md
exclude amici/*.so
exclude amici/*.dll
prune **/build/
prune **/build
prune amici/share
prune amici/lib
prune amici/ThirdParty/SuiteSparse/lib
Expand Down

0 comments on commit 3673940

Please sign in to comment.