From b5401995a377078f7fc74e5925fddcc1fb7b4443 Mon Sep 17 00:00:00 2001 From: Jordao Bragantini Date: Thu, 20 Jun 2024 14:32:08 -0700 Subject: [PATCH] adding python 3.12 support --- .github/workflows/test_pull_request.yml | 13 +++++-------- setup.cfg | 2 +- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test_pull_request.yml b/.github/workflows/test_pull_request.yml index b211f5a..c2b8ac7 100644 --- a/.github/workflows/test_pull_request.yml +++ b/.github/workflows/test_pull_request.yml @@ -14,22 +14,19 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest] - python: ["3.9", "3.10"] + python: ["3.9", "3.12"] backend: [pyqt5] include: - - python: 3.9 + - python: 3.11 platform: windows-latest backend: pyqt5 - - python: 3.9 + - python: 3.11 platform: macos-latest backend: pyside2 - - python: 3.9 + - python: 3.11 platform: ubuntu-latest backend: pyqt6 - - python: 3.9 - platform: ubuntu-latest - backend: pyside2 - - python: 3.9 # only this run execute coverage + - python: 3.11 # only this run execute coverage platform: ubuntu-latest backend: pyside6 coverage: true diff --git a/setup.cfg b/setup.cfg index fb4239d..004be0d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,7 +10,7 @@ license_files = LICENSE include_package_data = True [options] -python_requires = >=3.9,<3.12 +python_requires = >=3.9,<3.13 install_requires = click >=8.1.3,<9.0 rich >=13.3.5,<14.0