Skip to content
This repository has been archived by the owner on Jan 3, 2024. It is now read-only.

MANIFEST only necessary files for package install #195

Merged
merged 3 commits into from
Jul 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/[email protected]
- uses: neuroinformatics-unit/actions/lint@v2

manifest:
name: Check Manifest
runs-on: ubuntu-latest
steps:
- uses: neuroinformatics-unit/actions/check_manifest@v2

test:
needs: [linting, manifest]
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down Expand Up @@ -42,6 +49,7 @@ jobs:
# Run cellfinder tests to make sure cellfinder is still compatible
# with cellfinder-core
test_cellfinder:
needs: [linting, manifest]
name: Run cellfinder tests
runs-on: ubuntu-latest
steps:
Expand Down
14 changes: 13 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,13 @@
prune tests/data
include README.md
include LICENSE
include pyproject.toml

exclude *.yml
exclude *.yaml
exclude tox.ini
exclude CHANGELOG.md

graft src

prune benchmarks
prune tests