From fd050ce0c357e8e2a62fe7bff8055999af85975d Mon Sep 17 00:00:00 2001 From: Mark Forrer Date: Mon, 7 Nov 2022 18:22:37 -0800 Subject: [PATCH] Add Python 3.11 to CI tests Adding the newly-released Python version. --- .github/workflows/ci_test.yml | 2 +- README.md | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index 3d94d5a..98dea82 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, '3.10'] + python-version: [3.7, 3.8, 3.9, '3.10', '3.11'] steps: - name: Checkout repository diff --git a/README.md b/README.md index 12b9849..1c10374 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ [![GitHub Workflow Status (event)](https://img.shields.io/github/workflow/status/jellis18/PTMCMCSampler/CI%20targets?label=CI%20Tests)](https://github.com/jellis18/PTMCMCSampler/actions/workflows/ci_test.yml) [![DOI](https://zenodo.org/badge/32821232.svg)](https://zenodo.org/badge/latestdoi/32821232) -[![Python Versions](https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9%2C%203.10-blue.svg)]() +[![Python Versions](https://img.shields.io/badge/python-3.7%2C%203.8%2C%203.9%2C%203.10%2C%203.11-blue.svg)]() [![GitHub license](https://img.shields.io/github/license/Naereen/StrapDown.js.svg)](https://github.com/jellis18/PTMCMCSampler/blob/master/LICENSE) MPI enabled Parallel Tempering MCMC code written in Python. diff --git a/setup.py b/setup.py index b0d249c..e808da4 100755 --- a/setup.py +++ b/setup.py @@ -27,5 +27,6 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], )