File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 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 :
Original file line number Diff line number Diff 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 "
2120dependencies = [
2221 " torch" ,
2322 " hdxrate" ,
Original file line number Diff line number Diff line change 66from pandas .testing import assert_frame_equal
77
88from 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
1110from 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
1414cwd = Path (__file__ ).parent
1515input_dir = cwd / "test_data" / "input"
You can’t perform that action at this time.
0 commit comments