Skip to content

Commit 81f700c

Browse files
authored
chore: Roche/pyreadstat#310 #1451 introduce pyreadstat for python3.14 (#1457)
introduce pyreadstat for python3.14
1 parent 4168b12 commit 81f700c

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ exclude = [ "pandas-stubs/__init__.py" ]
3333

3434
[tool.poetry.dependencies]
3535
python = ">=3.10"
36-
types-pytz = ">= 2022.1.1"
36+
types-pytz = ">=2022.1.1"
3737
numpy = ">=1.23.5"
3838

3939
[tool.poetry.group.dev.dependencies]
@@ -54,7 +54,7 @@ isort = ">=6.0.1"
5454
openpyxl = ">=3.0.10"
5555
numexpr = ">=2.13.1"
5656
lxml = ">=4.9.1"
57-
pyreadstat = { version = ">=1.2.0", python = "<3.14" } # TODO: Roche/pyreadstat#310
57+
pyreadstat = ">=1.2.0"
5858
xlrd = ">=2.0.1"
5959
xlsxwriter = ">=3.0.3"
6060
pyxlsb = ">=1.0.10"

tests/test_io.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,6 @@ def test_hdf_series() -> None:
434434
check(assert_type(read_hdf(path, "s"), DataFrame | Series), Series)
435435

436436

437-
@pytest.mark.xfail(
438-
sys.version_info >= (3, 14),
439-
reason="pyreadstat 1.3.1 does not support py314 Roche/pyreadstat#310",
440-
)
441437
def test_spss() -> None:
442438
path = Path(CWD, "data", "labelled-num.sav")
443439
check(

0 commit comments

Comments
 (0)