From 360a45506ed1efa18b67294c6d3a18434efc2616 Mon Sep 17 00:00:00 2001 From: gruebel Date: Fri, 31 Oct 2025 16:47:02 +0100 Subject: [PATCH] make the license field PEP639 compatible Signed-off-by: gruebel --- .pre-commit-config.yaml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 140c2334..e0844195 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,7 +1,7 @@ default_stages: [pre-commit] repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.14.2 + rev: v0.14.3 hooks: - id: ruff-check args: [--fix] diff --git a/pyproject.toml b/pyproject.toml index 47ed0856..cd8e6ef9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,9 +9,9 @@ version = "0.8.3" description = "Standardizing Feature Flagging for Everyone" readme = "README.md" authors = [{ name = "OpenFeature", email = "openfeature-core@groups.io" }] -license = { file = "LICENSE" } +license = "Apache-2.0" +license-files = ["LICENSE"] classifiers = [ - "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "Programming Language :: Python :: 3", ]