Skip to content

Commit

Permalink
Try 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlKCarlK committed Oct 1, 2023
1 parent 62930b4 commit e0758ee
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: |
3.7
3.8
3.9
3.10
3.11
3.12
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
9 changes: 7 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,20 @@
name = "bed-reader"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python",
]
dependencies = ["numpy>=1.13.3", "pandas>=0.25.1", "pooch>=1.4.0", "chardet>=5.1.0"]
dependencies = [
"numpy>=1.13.3",
"pandas>=0.25.1",
"pooch>=1.4.0",
"chardet>=5.1.0",
]

[project.urls]
Homepage = "https://fastlmm.github.io"
Expand Down

0 comments on commit e0758ee

Please sign in to comment.