Skip to content

Commit 43be835

Browse files
authored
Merge pull request #52 from DynamicsAndNeuralSystems/jmoo2880-dev
Bump torch from 1.10.0 to 1.13.1
2 parents baa5eff + 0ebfe7e commit 43be835

File tree

3 files changed

+6
-14
lines changed

3 files changed

+6
-14
lines changed

.github/workflows/run_unit_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.8"]
11+
python-version: ["3.8", "3.9"]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Setup python ${{ matrix.python-version }}

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jpype1==1.2.0
1313
sktime==0.8.0
1414
dill==0.3.2
1515
spectral-connectivity==0.2.4.dev0
16-
torch==1.10.0
16+
torch==1.13.1
1717
cdt==0.5.23
1818
oct2py==5.2.0
1919
tslearn==0.5.2

setup.py

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
'sktime==0.8.0',
2323
'dill==0.3.2',
2424
'spectral-connectivity==0.2.4.dev0',
25-
'torch==1.10.0',
25+
'torch==1.13.1',
2626
'cdt==0.5.23',
2727
'oct2py==5.2.0',
2828
'tslearn==0.5.2',
@@ -34,15 +34,6 @@
3434
'pytest==5.4.2', # unittest.TestCase funkyness, see commit 77c1505ab
3535
]
3636

37-
docs_extras = [
38-
'Sphinx >= 3.0.0', # Force RTD to use >= 3.0.0
39-
'docutils',
40-
'pylons-sphinx-themes >= 1.0.8', # Ethical Ads
41-
'pylons_sphinx_latesturl',
42-
'repoze.sphinx.autointerface',
43-
'sphinx-copybutton',
44-
'sphinxcontrib-autoprogram',
45-
]
4637

4738
setup(
4839
name='pyspi',
@@ -67,7 +58,8 @@
6758
'lib/PhiToolbox/utility/Gauss/H_gauss.m',
6859
'lib/PhiToolbox/utility/Gauss/logdet.m',
6960
'data/cml.npy',
70-
'data/forex.npy']},
61+
'data/forex.npy',
62+
'data/standard_normal.npy']},
7163
include_package_data=True,
7264
version='0.4.0',
7365
description='Library for pairwise analysis of time series data.',
@@ -89,5 +81,5 @@
8981
"Topic :: Scientific/Engineering :: Medical Science Apps.",
9082
],
9183
install_requires=install_requires,
92-
extras_require={'testing': testing_extras, 'docs': docs_extras}
84+
extras_require={'testing': testing_extras}
9385
)

0 commit comments

Comments
 (0)