Skip to content

Commit

Permalink
Merge pull request #32 from piotr-roslaniec/python-versions
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-roslaniec authored Nov 30, 2023
2 parents ac708f5 + de02b86 commit 7ef3f0d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Python package CI

on: [ push, pull_request ]

jobs:
test:

runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [ "3.9", "3.12" ]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
- name: Build dist
run: |
python setup.py sdist bdist_wheel
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,11 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"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"
]

Expand Down

0 comments on commit 7ef3f0d

Please sign in to comment.