Skip to content

Commit

Permalink
Merge branch 'main' into release-0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fkiraly committed Sep 29, 2024
2 parents ac504fe + e66d01d commit 07e0c48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"]
steps:
- uses: actions/checkout@v4

Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,16 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8,<3.13"
requires-python = ">=3.8,<3.14"
dependencies = []

[project.optional-dependencies]
all_extras = ["numpy", "pandas"]

dev = [
"scikit-learn>=0.24.0",
'scikit-learn>=0.24.0; python_version < "3.13" or sys_platform != "win32"', # todo 0.11.0 - check if windows 3.13 works, if yes, remove markers
"pre-commit",
"pytest",
"pytest-cov"
Expand Down Expand Up @@ -86,7 +87,7 @@ test = [
"numpy",
"scipy",
"pandas",
"scikit-learn>=0.24.0",
'scikit-learn>=0.24.0; python_version < "3.13" or sys_platform != "win32"', # todo 0.11.0 - check if windows 3.13 works, if yes, remove markers
]

[project.urls]
Expand Down

0 comments on commit 07e0c48

Please sign in to comment.