Skip to content

Commit f634bb4

Browse files
committed
Bump pyspi version for publish and make datset generation workflow manually executable on git actions.
1 parent 59c09f0 commit f634bb4

File tree

3 files changed

+35
-35
lines changed

3 files changed

+35
-35
lines changed
Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
# name: Unit Testing Pipeline
1+
name: Generate benchmarking dataset tables
22

3-
# on:
4-
# push:
3+
on:
4+
workflow_dispatch:
55

6-
# jobs:
7-
# test-ubuntu:
8-
# runs-on: ubuntu-latest
9-
# strategy:
10-
# matrix:
11-
# python-version: ["3.9"]
12-
# steps:
13-
# - uses: actions/checkout@v4
14-
# - name: Setup python ${{ matrix.python-version }}
15-
# uses: actions/setup-python@v5
16-
# with:
17-
# python-version: ${{ matrix.python-version }}
18-
# cache: 'pip'
19-
# - name: Install octave
20-
# run: |
21-
# sudo apt-get update
22-
# sudo apt-get install -y build-essential octave
23-
# - name: Install pyspi dependencies
24-
# run: |
25-
# python -m pip install --upgrade pip
26-
# pip install -r requirements.txt
27-
# pip install .
28-
# - name: Run data generation
29-
# run: |
30-
# python tests/generate_benchmark_tables.py
31-
# - name: Upload artifact
32-
# uses: actions/upload-artifact@v3
33-
# with:
34-
# name: benchmark-tables
35-
# path: tests/CML7_benchmark_tables_new.pkl
6+
jobs:
7+
test-ubuntu:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
python-version: ["3.9"]
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Setup python ${{ matrix.python-version }}
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: ${{ matrix.python-version }}
18+
cache: 'pip'
19+
- name: Install octave
20+
run: |
21+
sudo apt-get update
22+
sudo apt-get install -y build-essential octave
23+
- name: Install pyspi dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install -r requirements.txt
27+
pip install .
28+
- name: Run data generation
29+
run: |
30+
python tests/generate_benchmark_tables.py
31+
- name: Upload artifact
32+
uses: actions/upload-artifact@v3
33+
with:
34+
name: benchmark-tables
35+
path: tests/CML7_benchmark_tables_new.pkl

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "pyspi"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name ="Oliver M. Cliff", email="oliver.m.cliff@gmail.com"},
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
'data/standard_normal.npy',
6262
'data/cml7.npy']},
6363
include_package_data=True,
64-
version='1.0.1',
64+
version='1.0.2',
6565
description='Library for pairwise analysis of time series data.',
6666
author='Oliver M. Cliff',
6767
author_email='oliver.m.cliff@gmail.com',

0 commit comments

Comments
 (0)