Skip to content

Commit 25c7a60

Browse files
committed
fix: update ci python versions, update imports
Note: a couple of imports are still missing, so tests fail
1 parent 0e97978 commit 25c7a60

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
25+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2626
fail-fast: false
2727

2828
steps:
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Run tests
5151
run: |
52-
pytest
52+
pytest
5353
5454
- name: Lint with flake8
5555
run: |

tests/nm_dimension_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
import unittest
1010

11+
import pyneuromatic.nm_utilities as nmu
12+
from pyneuromatic.nm_dimension import NMDimension, NMDimensionX
1113
from pyneuromatic.nm_folder import NMFolder
1214
from pyneuromatic.nm_manager import NMManager
13-
from pyneuromatic.nm_scale import NMDimension, NMDimensionX
14-
import pyneuromatic.nm_utilities as nmu
1515

1616
NM = NMManager(quiet=True)
1717

tests/nm_object_container_test.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
66
@author: jason
77
"""
8+
89
import unittest
910

11+
import pyneuromatic.nm_utilities as nmu
1012
from pyneuromatic.nm_manager import NMManager
11-
from npyneuromatic.m_object import NMObject
13+
from pyneuromatic.nm_object import NMObject
1214
from pyneuromatic.nm_object_container import NMObjectContainer
13-
import pyneuromatic.nm_utilities as nmu
1415
from pyneuromatic.nm_object_test import NMObject2
1516

1617
QUIET = True

0 commit comments

Comments
 (0)