Skip to content

Commit 7f4c4f9

Browse files
committed
support py311 only
1 parent c7e3eb1 commit 7f4c4f9

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [ "ubuntu-latest", "macos-latest", "windows-latest"]
12-
python-version: [ "3.11", "3.12" ]
12+
python-version: [ "3.11", ]
1313

1414
runs-on: ${{ matrix.os }}
1515
steps:

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,9 @@ classifiers = [
1414
"Intended Audience :: Science/Research",
1515
"Natural Language :: English",
1616
"Programming Language :: Python :: 3.11",
17-
"Programming Language :: Python :: 3.12",
1817
]
1918

20-
requires-python = ">=3.11,<3.13"
19+
requires-python = ">=3.11,<3.12"
2120
dependencies = [
2221
"torch",
2322
"hdxrate",

tests/test_models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
from pandas.testing import assert_frame_equal
77

88
from pyhdx import HDXMeasurement
9-
from pyhdx.datasets import read_dynamx
10-
from pyhdx.fileIO import csv_to_dataframe, csv_to_hdxm
9+
from pyhdx.fileIO import csv_to_dataframe, csv_to_hdxm, read_dynamx
1110
from pyhdx.models import Coverage
12-
from pyhdx.process import apply_control, correct_d_uptake, filter_peptides
11+
from pyhdx.process import apply_control, correct_d_uptake
12+
from pyhdx.legacy import filter_peptides
1313

1414
cwd = Path(__file__).parent
1515
input_dir = cwd / "test_data" / "input"

0 commit comments

Comments
 (0)