From d547dbc07c3fb2d5e49e5b5ab70d9234ac398938 Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Sat, 18 Nov 2023 16:39:39 -0800 Subject: [PATCH] Test with Python 3.12 on CI --- .github/workflows/main.yml | 2 +- README.rst | 4 ++-- setup.py | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f9e8fe4..1c1eac0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,7 +66,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11] + python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12] os: [ubuntu-20.04] runs-on: ${{ matrix.os }} diff --git a/README.rst b/README.rst index 6a9d51e..f66ebf0 100644 --- a/README.rst +++ b/README.rst @@ -20,9 +20,9 @@ Installation Py65 packages are `available `_ on the Python Package Index (PyPI). You download them from there or you can -use ``pip`` to automatically install or upgrade Py65:: +use ``pip`` to install Py65:: - $ pip install -U py65 + $ pip install setuptools py65 Devices ------- diff --git a/setup.py b/setup.py index 7371daa..cabfafd 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ CLASSIFIERS = [ '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 :: Assemblers', 'Topic :: Software Development :: Disassemblers',