Skip to content

Commit

Permalink
Merge pull request #445 from yfukai/update_sklearn
Browse files Browse the repository at this point in the history
  • Loading branch information
yfukai authored Aug 5, 2024
2 parents abca764 + 3a7e86c commit c4f0364
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,10 @@ jobs:
- { python-version: "3.11", os: ubuntu-latest, session: "mypy" }
- { python-version: "3.10", os: ubuntu-latest, session: "mypy" }
- { python-version: 3.9, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.8, os: ubuntu-latest, session: "mypy" }
- { python-version: "3.12", os: ubuntu-latest, session: "tests" }
- { python-version: "3.11", os: ubuntu-latest, session: "tests" }
- { python-version: "3.10", os: ubuntu-latest, session: "tests" }
- { python-version: 3.9, os: ubuntu-latest, session: "tests" }
- { python-version: 3.8, os: ubuntu-latest, session: "tests" }
- { python-version: "3.12", os: windows-latest, session: "tests" }
- { python-version: "3.12", os: macos-latest, session: "tests" }
# since ray is still not available wiht 3.12
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Request features on the `Issue Tracker`_.
How to set up your development environment
------------------------------------------

You need Python 3.8+ and the following tools:
You need Python 3.9+ and the following tools:

- Poetry_
- Nox_
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ See the `publication`_ and `associated repository`_ for the algorithm and parame
Requirements
------------

Python >= 3.8 is supported.
The software is tested against Python 3.8-3.12 in Ubuntu, and 3.12 in MacOS and Windows environments,
Python >= 3.9 is supported.
The software is tested against Python 3.9-3.12 in Ubuntu, and 3.12 in MacOS and Windows environments,
but the other combinations should also be fine. Please `file an issue`_ if you encounter any problem.

Installation
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


package = "laptrack"
python_versions = ["3.12", "3.11", "3.10", "3.9", "3.8"]
python_versions = ["3.12", "3.11", "3.10", "3.9"]
safety_ignore = [
44717,
44715,
Expand Down
10 changes: 3 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand All @@ -26,12 +25,9 @@ classifiers = [
Changelog = "https://github.com/yfukai/laptrack/releases"

[tool.poetry.dependencies]
python = "^3.8,<3.13"
python = "^3.9,<3.13"
click = "^8.0.1"
numpy = [
{ version = ">=1.26,<3.0.0", python = ">=3.9" },
{ version = ">=1.24,<3.0.0", python = "<3.9" }
]
numpy = ">=1.26,<3.0.0"
scipy = [
{ version = "^1.12.0", python = ">=3.12" },
{ version = "^1.8.0", python = "<3.12" }
Expand All @@ -45,7 +41,7 @@ scikit-image = [
{ version = ">=0.20.0,<1.0.0", python = ">=3.11" }
]
pooch = "^1.6.0"
scikit-learn = "^1.3.1"
scikit-learn = "^1.5.0"

[tool.poetry.scripts]
laptrack = "laptrack.__main__:main"
Expand Down

0 comments on commit c4f0364

Please sign in to comment.