Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ If you need bleeding-edge features and don't mind potentially unstable or undocu
pip install git+https://github.com/MLCIL/scikit-fingerprints.git
```

Python versions from 3.10 to 3.13 are supported on all major operating systems.
Python versions from 3.10 to 3.14 are supported on all major operating systems.
Tests are run on Linux Ubuntu, Windows, and macOS.

## Quickstart
Expand Down
9 changes: 8 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
Expand All @@ -25,8 +26,9 @@ classifiers = [
"Typing :: Typed",
]

requires-python = ">=3.10,<3.14"
requires-python = ">=3.10,<3.15"
dependencies = [
"cloudpickle>=3.0",
"descriptastorus>=2.0.0,<3",
"e3fp>=1.2.6,<2",
"huggingface_hub>=0.20.0,<2",
Expand Down Expand Up @@ -113,6 +115,11 @@ no_site_packages = true
module-name = "skfp"
module-root = ""

[tool.uv.sources]
# Temporary Python 3.14 compatibility sources, to be replaced with PyPI releases.
joblib = { git = "https://github.com/joblib/joblib.git", branch = "main" }
cloudpickle = { git = "https://github.com/BioGeek/cloudpickle.git", branch = "python3.14" }

[build-system]
requires = ["uv_build<1"]
build-backend = "uv_build"
Expand Down
Loading