From c5bf710649a336853c3f92a301754e9f7ff6ebb4 Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Thu, 4 Jul 2024 18:13:44 +0530 Subject: [PATCH] Bump version --- .github/workflows/tox.yml | 2 +- setup.cfg | 6 +++--- tox.ini | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tox.yml b/.github/workflows/tox.yml index 78ec836..a0f187e 100644 --- a/.github/workflows/tox.yml +++ b/.github/workflows/tox.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] name: Python ${{ matrix.python-version }} tests steps: - uses: actions/checkout@v2 diff --git a/setup.cfg b/setup.cfg index d4e7669..7bda4b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = interpreted -version = 0.1.0 +version = 0.2.0 description = A Python interpreter, in Python. long_description = file: README.md long_description_content_type = text/markdown @@ -14,17 +14,17 @@ classifiers = Operating System :: OS Independent Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - 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 Programming Language :: Python :: Implementation :: CPython Typing :: Typed [options] packages = find: -python_requires = >=3.7 +python_requires = >=3.8 package_dir = =src [options.packages.find] diff --git a/tox.ini b/tox.ini index 05e71fe..7e17339 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py37,py38,py39,py310,py311#,py311-type +envlist = py38,py39,py310,py311,py312#,py312-type skip_missing_interpreters = true [testenv]