Skip to content

Commit 65575f5

Browse files
Merge pull request #204 from NeuralEnsemble/feat-test-py313
feat: support py3.13
2 parents f5c189b + bb0de58 commit 65575f5

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/ci.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
17+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1818
runs-on: [ubuntu-latest, windows-latest, macos-latest]
1919
exclude:
2020
- runs-on: macos-latest
2121
python-version: "3.8"
2222
- runs-on: macos-latest
2323
python-version: "3.9"
24+
- runs-on: windows-latest
25+
python-version: "3.13" # not sure how to install libhdf5
2426

2527
steps:
2628
- uses: actions/checkout@v4
@@ -30,9 +32,15 @@ jobs:
3032
with:
3133
python-version: ${{ matrix.python-version }}
3234

33-
- name: Install dependencies
35+
- name: Install HDF5 for pytables on ubuntu-latest
36+
if: ${{ matrix.runs-on == 'ubuntu-latest' }}
3437
run: |
38+
sudo apt-get update -y
39+
sudo apt-get install libhdf5-serial-dev
3540
#sudo apt-get install libhdf5-serial-dev liblzo2-dev libgraphviz-dev -y
41+
42+
- name: Install dependencies
43+
run: |
3644
python -m pip install --upgrade pip
3745
3846
- name: Install HDF5 for pytables on macos-latest

.github/workflows/regenerate.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v4

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ classifiers =
2020
Programming Language :: Python :: 3.10
2121
Programming Language :: Python :: 3.11
2222
Programming Language :: Python :: 3.12
23+
Programming Language :: Python :: 3.13
2324
Topic :: Scientific/Engineering :: Bio-Informatics
2425
Topic :: Scientific/Engineering
2526

0 commit comments

Comments
 (0)