Skip to content
Merged
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- uses: actions/checkout@v4
Expand Down
19 changes: 9 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,31 +12,27 @@ build-backend = "hatchling.build"
name = "func_adl"
description = "Functional Analysis Description Language Base Package"
readme = "README.md"
authors = [
{ name = "G. Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" }
]
authors = [{ name = "G. Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" }]
maintainers = [
{ name = "Gordon Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" }
{ name = "Gordon Watts (IRIS-HEP/UW Seattle)", email = "[email protected]" },
]
license = { text = "MIT" }
homepage = "https://github.com/iris-hep/func_adl"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
"Topic :: Utilities"
]
dependencies = [
"make-it-sync"
"Topic :: Utilities",
]
dependencies = ["make-it-sync"]
dynamic = ["version"]

[project.optional-dependencies]
Expand All @@ -52,7 +48,7 @@ test = [
"black",
"isort",
"numpy",
"hatch"
"hatch",
]

[project.scripts]
Expand All @@ -66,3 +62,6 @@ include = ["README.md", "/func_adl"]

[tool.hatch.build.targets.wheel]
include = ["README.md", "/func_adl"]

[project.urls]
Homepage = "https://github.com/iris-hep/func_adl"