From a338e3156056ef359aee31bc9ae03e12f058c27f Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Fri, 3 Oct 2025 19:47:14 +0200 Subject: [PATCH 1/2] package: fix license identifier to avoid deprecation warning --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3a67d1c4..e4634fa2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "universal_pathlib" -license = {text = "MIT License"} +license = "MIT" authors = [ {name = "Andrew Fulton", email = "andrewfulton9@gmail.com"}, ] From 5d2fd352409cccfa1d59e0a81e306fc3b0c87871 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Fri, 3 Oct 2025 19:49:39 +0200 Subject: [PATCH 2/2] ci: limit token permissions --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cbc1137b..92d5099b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,6 +6,9 @@ on: pull_request: workflow_dispatch: +permissions: + contents: read + env: FORCE_COLOR: "1"