Skip to content

Commit

Permalink
WIP: flit install fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
tbirdso committed Nov 7, 2023
1 parent 6a51ff1 commit c2f2fbf
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ jobs:
with:
python-version: "3.10"

- name: "Install Lightsheet Notebook Dependencies"
shell: bash
run: |
git clone https://github.com/AllenNeuralDynamics/aind-ccf-alignment-experiments.git
python -m pip install .
- name: "Install Dependencies"
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
python -m pip install flit
cd src
flit install --extras all
flit install --deps develop
- name: "Run Tests"
shell: bash
Expand Down
8 changes: 7 additions & 1 deletion src/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ dependencies = [
Home = "https://github.com/InsightSoftwareConsortium/itk-dreg"

[project.optional-dependencies]
test = [
'itk-elastix',
'itk-ioomezarrngff',
'pytest',
]

dev = [
'black',
'pytest'
Expand All @@ -50,7 +56,7 @@ elastix = [
]

lightsheet = [
'aind_ccf_alignment_experiments'
'aind_ccf_alignment_experiments',
'itk-elastix',
'itk-ioomezarrngff',
'papermill'
Expand Down

0 comments on commit c2f2fbf

Please sign in to comment.