diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac9fa43b..7b71829d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/larray_editor/comparator.py b/larray_editor/comparator.py index 4e00c1aa..d12d8ac4 100644 --- a/larray_editor/comparator.py +++ b/larray_editor/comparator.py @@ -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 diff --git a/larray_editor/tests/test_api_larray.py b/larray_editor/tests/test_api_larray.py index 13b5b442..17718e2f 100644 --- a/larray_editor/tests/test_api_larray.py +++ b/larray_editor/tests/test_api_larray.py @@ -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 diff --git a/setup.py b/setup.py index e0adf99c..69c8eb90 100644 --- a/setup.py +++ b/setup.py @@ -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', ]