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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v7

Expand Down
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,27 @@ dependencies = [
]
license = "MIT"
license-files = ["LICENSE"]
# No `License ::` trove classifier: the SPDX `license` expression above already
# produces `License-Expression` in the metadata, and declaring both is what newer
# setuptools warns about.
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]

[project.urls]
Homepage = "https://you.com/docs/welcome"
Repository = "https://github.com/youdotcom-oss/youdotcom-python-sdk"
Changelog = "https://github.com/youdotcom-oss/youdotcom-python-sdk/blob/main/CHANGELOG.md"
Issues = "https://github.com/youdotcom-oss/youdotcom-python-sdk/issues"

[dependency-groups]
# The single source of truth for dev tooling — CI installs this group with
Expand Down
Loading