Skip to content

Commit 036912d

Browse files
committed
added signature_method.ipynb to excluded list
1 parent fc1002f commit 036912d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/utilities/run_examples.sh

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ if [ "$1" = true ]; then
2323
"examples/classification/shapelet_based.ipynb"
2424
"examples/classification/convolution_based.ipynb"
2525
"examples/similarity_search/code_speed.ipynb"
26+
"examples/transformations/signature_method.ipynb"
2627

2728
)
2829
fi

.github/workflows/periodic_tests.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ jobs:
5252
- name: Checkout
5353
uses: actions/checkout@v4
5454

55-
- name: Install bash 5.x
55+
- name: Install latest version of bash
5656
run: |
5757
brew install bash
5858
/opt/homebrew/bin/bash --version
59+
sudo ln -sf /opt/homebrew/bin/bash /bin/bash
60+
bash --version
5961
6062
- name: Setup Python 3.10
6163
uses: actions/setup-python@v5
@@ -74,9 +76,6 @@ jobs:
7476
with:
7577
additional_extras: "dev,binder"
7678

77-
- name: Install esig on macOS
78-
run: brew install boost && pip install "esig>=0.9.7,<1.0.0"
79-
8079
- name: Run example notebooks
8180
run: .github/utilities/run_examples.sh false
8281
shell: bash

.github/workflows/pr_examples.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v4
2727

28-
- name: Install bash 5.x
28+
- name: Install latest version of bash
2929
run: |
3030
brew install bash
3131
/opt/homebrew/bin/bash --version
32+
sudo ln -sf /opt/homebrew/bin/bash /bin/bash
33+
bash --version
3234
3335
- name: Setup Python 3.10
3436
uses: actions/setup-python@v5
@@ -47,9 +49,6 @@ jobs:
4749
with:
4850
additional_extras: "dev,binder"
4951

50-
- name: Install esig on macOS
51-
run: brew install boost && pip install "esig>=0.9.7,<1.0.0"
52-
5352
- name: Run example notebooks
5453
run: .github/utilities/run_examples.sh ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'full examples run') }}
5554
shell: bash

0 commit comments

Comments
 (0)