Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

81 update pyversions #82

Merged
merged 7 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading