From a38010f3a06347ee5c7eb17f27f91da4c3e5c6d2 Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Thu, 9 Nov 2023 14:16:54 +0100 Subject: [PATCH] drop Python 3.6 support, add 3.12 --- .github/workflows/ci-linux-ubuntu.yml | 2 +- docs/index.md | 2 +- pyproject.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-linux-ubuntu.yml b/.github/workflows/ci-linux-ubuntu.yml index 6ac944e..b5e1662 100644 --- a/.github/workflows/ci-linux-ubuntu.yml +++ b/.github/workflows/ci-linux-ubuntu.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/docs/index.md b/docs/index.md index b8ce07d..9e7b652 100644 --- a/docs/index.md +++ b/docs/index.md @@ -41,7 +41,7 @@ tutorials. ## Python versions -Arpeggio works with Python 3.6+. Other versions might work but are not tested. +Arpeggio works with Python 3.7+. Other versions might work but are not tested. ## Open-source projects using Arpeggio diff --git a/pyproject.toml b/pyproject.toml index a7ec82f..c6eae41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ readme = "README.md" license = {text = "MIT"} keywords = ["parser", "PEG", "packrat", "library", "interpreter"] -requires-python = ">=3.6, <3.13" +requires-python = ">=3.7, <3.13" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -20,12 +20,12 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "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", ] [project.urls]