From 6ca173b1c6e6ed9ad3a86692af9834919fa0e558 Mon Sep 17 00:00:00 2001 From: Travis Reyburn <38515664+treyburn@users.noreply.github.com> Date: Fri, 13 Oct 2023 14:08:26 -0600 Subject: [PATCH] Fix PyPi Identifiers (#21) Fix PyPi identifiers for supported python versions. Also reduce scope of integration test runs on publish action. --- .github/workflows/publish.yml | 5 +---- pyproject.toml | 10 +++++----- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9d7ac95..397a9b0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,16 +31,13 @@ jobs: tests: # run integration tests against production before releasing new version of sdk runs-on: ubuntu-latest - strategy: - matrix: - python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ] steps: - uses: actions/checkout@v3 - run: pipx install poetry - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: ${{ matrix.python-version }} + python-version: "3.8" cache: "poetry" - name: Install dependencies run: poetry install --with dev diff --git a/pyproject.toml b/pyproject.toml index bae7227..a9fafb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,11 +15,11 @@ classifiers = [ "Framework :: Pydantic", "Intended Audience :: Developers", "Intended Audience :: System Administrators", - "PROGRAMMING LANGUAGE :: PYTHON :: 3.8", - "PROGRAMMING LANGUAGE :: PYTHON :: 3.9", - "PROGRAMMING LANGUAGE :: PYTHON :: 3.10", - "PROGRAMMING LANGUAGE :: PYTHON :: 3.11", - "PROGRAMMING LANGUAGE :: PYTHON :: 3.12", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Security", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Systems Administration",