Skip to content
Open

py314 #297

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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
# os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']

defaults:
run:
Expand Down
5 changes: 4 additions & 1 deletion larray_editor/comparator.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,10 @@ def _update_from_combined_array(self):

atol, rtol = self._get_atol_rtol()
try:
self._diff_below_tolerance = self._combined_array.eq(self._array0, rtol=rtol, atol=atol, nans_equal=self.nans_equal)
self._diff_below_tolerance = (
self._combined_array.eq(self._array0,
rtol=rtol, atol=atol,
nans_equal=self.nans_equal))
except TypeError:
self._diff_below_tolerance = self._combined_array == self._array0

Expand Down
3 changes: 2 additions & 1 deletion larray_editor/tests/test_api_larray.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
import larray as la

# from larray_editor.api import edit
from larray_editor.api import view, edit, debug, compare
# from larray_editor.api import view, edit, debug, compare
from larray_editor.api import edit, compare
from larray_editor.utils import logger

import qtpy
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,12 @@ def readlocal(fname):
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
]
Expand Down
Loading