From 7b051344e98cb8db885fbc9048e8a73729d107cf Mon Sep 17 00:00:00 2001 From: Pedro Rivero Date: Wed, 3 Jan 2024 13:30:04 -0500 Subject: [PATCH] chore: port ignored files from template --- .github/workflows/coverage.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test-development.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 2 +- pyproject.toml | 1 + tox.ini | 10 +++++----- 7 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index faf43ad..de6ecf3 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -19,7 +19,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - python-version: ['3.11'] + python-version: ['3.12'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 804e648..bb23efe 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - python-version: ['3.11'] + python-version: ['3.12'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/test-development.yml b/.github/workflows/test-development.yml index 2f2285a..675dbc4 100644 --- a/.github/workflows/test-development.yml +++ b/.github/workflows/test-development.yml @@ -21,7 +21,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - python-version: ['3.11'] + python-version: ['3.12'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6ef6c47..59e4d25 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] include: - os: macos-latest python-version: '3.8' diff --git a/README.md b/README.md index 3c3661c..fc24173 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
![Platform](https://img.shields.io/badge/Platform-Linux%20%7C%20macOS%20%7C%20Windows-informational) - [![Python](https://img.shields.io/badge/Python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-informational)](https://www.python.org/) + [![Python](https://img.shields.io/badge/Python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-informational)](https://www.python.org/) [![Qiskit](https://img.shields.io/badge/Qiskit-%E2%89%A5%200.45.1-6133BD)](https://github.com/Qiskit/qiskit)
[![Tests](https://github.com/qiskit-community/prototype-zne/actions/workflows/test.yml/badge.svg)](https://github.com/qiskit-community/prototype-zne/actions/workflows/test.yml) diff --git a/pyproject.toml b/pyproject.toml index 38f664c..f894089 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering :: Physics", ] dynamic = ["version", "description"] diff --git a/tox.ini b/tox.ini index e10b228..fba5054 100644 --- a/tox.ini +++ b/tox.ini @@ -30,8 +30,8 @@ commands = ################################################################################ [testenv:coverage] description = coverage tests -envdir = {toxworkdir}/py311 -basepython = python3.11 +envdir = {toxworkdir}/py312 +basepython = python3.12 setenv = {[testenv]setenv} commands = @@ -41,7 +41,7 @@ commands = [testenv:lint] description = lint checks envdir = {toxworkdir}/lint -basepython = python3.11 +basepython = python3.12 extras = lint commands = @@ -55,7 +55,7 @@ commands = [testenv:style] description = style formatter envdir = {toxworkdir}/lint -basepython = python3.11 +basepython = python3.12 extras = lint commands = @@ -80,7 +80,7 @@ commands = ################################################################################ ## NOTEBOOK ################################################################################ -[testenv:py3{8,9,10,11}-notebook] +[testenv:py3{8,9,10,11,12}-notebook] extras = notebook lint