Skip to content

Commit

Permalink
Merge pull request #82 from SciKit-Surgery/81-update-pyversions
Browse files Browse the repository at this point in the history
81 update pyversions
  • Loading branch information
thompson318 committed Feb 22, 2024
2 parents ac666ff + f04158b commit 6776a36
Show file tree
Hide file tree
Showing 6 changed files with 1,053 additions and 438 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, windows-latest]
python-ver: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macos-latest, windows-latest]
python-ver: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]

runs-on: ${{ matrix.os }}

Expand All @@ -29,7 +29,7 @@ jobs:
- name: Linting
run: |
pylint --rcfile=tests/pylintrc sksurgerynditracker tests
pylint --rcfile=tests/pylintrc --ignore _version.py sksurgerynditracker tests
- name: Run coveralls
run: |
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
# It is used by pip to manage software dependencies. It is not to be
# confused with the software requirements, which are listed in
# doc/requirements.rst
ndicapi>=3.2.6
ndicapi>=3.7.2
numpy>=1.11
six>=1.10
scikit-surgerycore>=0.7.0
scikit-surgerycore>=0.7.1
pyserial
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
install_requires=[
'six>=1.10',
'numpy>=1.11',
'ndicapi>=3.2.6',
'scikit-surgerycore>=0.7.0',
'ndicapi>=3.7.2',
'scikit-surgerycore>=0.7.1',
'pyserial'
],
)
5 changes: 2 additions & 3 deletions sksurgerynditracker/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# coding=utf-8
"""scikit-surgerynditracker"""

from ._version import get_versions
__version__ = get_versions()['version']
del get_versions
from . import _version
__version__ = _version.get_versions()['version']
Loading

0 comments on commit 6776a36

Please sign in to comment.