Skip to content

Commit ff763f6

Browse files
committed
bump version
1 parent b7cd619 commit ff763f6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest]
14-
python-version: [3.7, 3.8]
14+
python-version: [3.9, 3.12]
1515
exclude:
1616
- os: macos-latest
17-
python-version: 3.8
17+
python-version: 3.12
1818

1919
steps:
2020
- uses: actions/checkout@v2

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest]
18-
python-version: [3.7]
18+
python-version: [3.9]
1919

2020
steps:
2121
- name: Copy Repository Contents ↩

.github/workflows/test-notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
os: [ubuntu-latest, macos-latest]
14-
python-version: [3.7]
14+
python-version: [3.9]
1515

1616
steps:
1717
- uses: actions/checkout@v2

neurolib/control/optimal_control/oc_jax.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def compute_cc_cost(self, output):
125125
def compute_var_cost(self, output):
126126
return jnp.var(output, axis=(0, 1)).mean()
127127

128-
def compute_osc_fourier_cost(self, output):
128+
def compute_osc_fourier_cost(self, output): ...
129129

130130
def optimize_deterministic(self, n_max_iterations, output_every_nth=None):
131131
"""Compute the optimal control signal for noise averaging method 0.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"License :: OSI Approved :: MIT License",
2626
"Operating System :: OS Independent",
2727
],
28-
python_requires=">=3.6",
28+
python_requires=">=3.9",
2929
install_requires=requirements,
3030
include_package_data=True,
3131
)

0 commit comments

Comments
 (0)