Skip to content

Commit

Permalink
Run tests on Python 3.9 - 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaberez committed Nov 18, 2023
1 parent dd25cef commit 7fb25c5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ name: Run all tests

on: [push]

env:
PIP: "env PIP_DISABLE_PIP_VERSION_CHECK=1
PYTHONWARNINGS=ignore:DEPRECATION
pip --no-cache-dir"

jobs:
build_py34:
runs-on: ubuntu-20.04
Expand All @@ -15,6 +20,9 @@ jobs:
- name: Show Python version
run: python -V

- name: Install dependencies
run: $PIP install setuptools

- name: Run the tests
run: python setup.py test -q

Expand All @@ -30,6 +38,9 @@ jobs:
- name: Show Python version
run: python -V

- name: Install dependencies
run: $PIP install setuptools

- name: Run the tests
run: python setup.py test -q

Expand All @@ -38,7 +49,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12]

steps:
- uses: actions/checkout@v3
Expand All @@ -51,5 +62,8 @@ jobs:
- name: Show Python version
run: python -V

- name: Install dependencies
run: $PIP install setuptools

- name: Run the tests
run: python setup.py test -q
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
'Programming Language :: Python :: 3.6',
'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',
'Programming Language :: Assembly',
'Topic :: Software Development :: Disassemblers',
'Topic :: Software Development :: Embedded Systems',
Expand Down

0 comments on commit 7fb25c5

Please sign in to comment.