From e654f1744df35417d1d7252503b1c7f7299741e9 Mon Sep 17 00:00:00 2001 From: kirk Date: Wed, 16 Apr 2025 13:02:30 -0400 Subject: [PATCH] pin versions in github actions --- .github/workflows/publish_package.yaml | 4 +++- pyproject.toml | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish_package.yaml b/.github/workflows/publish_package.yaml index bef96993..db2b1089 100644 --- a/.github/workflows/publish_package.yaml +++ b/.github/workflows/publish_package.yaml @@ -12,7 +12,9 @@ jobs: - uses: actions/checkout@v2 - name: Install Twine - run: pip install twine + run: | + pip install twine==6.1.0 + pip install packaging==24.2 - name: Build Distributions run: | diff --git a/pyproject.toml b/pyproject.toml index c9befed7..1eec2b06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,9 +11,9 @@ dynamic = ["dependencies", "version"] readme = "README.md" requires-python = ">=3.9, <4" authors = [{ name = "Ethyca, Inc.", email = "fidesteam@ethyca.com" }] -license = { text = "Apache License 2.0" } +license = "Apache-2.0" +license-files = ["LICENSE"] classifiers = [ - "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",