Skip to content

Commit

Permalink
Fix PyPi Identifiers (#21)
Browse files Browse the repository at this point in the history
Fix PyPi identifiers for supported python versions.

Also reduce scope of integration test runs on publish action.
  • Loading branch information
treyburn authored Oct 13, 2023
1 parent a475750 commit 6ca173b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 6ca173b

Please sign in to comment.