From 5250e74d2c0f33130d87c9684107a1a8f3a46d5d Mon Sep 17 00:00:00 2001 From: Chayim Date: Thu, 1 Dec 2022 11:25:39 +0200 Subject: [PATCH] python 3.11 trove, and version change (#87) --- .github/workflows/integration.yaml | 4 ++-- pyproject.toml | 3 ++- tox.ini | 1 - 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 8db3351..342f0e4 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -20,7 +20,7 @@ jobs: strategy: max-parallel: 15 matrix: - python-version: ['3.6', '3.7', '3.8', '3.9', '3.10'] + python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11'] env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true name: Python ${{ matrix.python-version }} test @@ -48,7 +48,7 @@ jobs: run: | pip install poetry pip install -q -r dev_requirements.txt - tox -e python${{ matrix.python-version }} + tox - name: build and install the package in this python version run: | poetry build diff --git a/pyproject.toml b/pyproject.toml index 42e5f51..a7bf183 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ramp-packer" -version = "2.3.2" +version = "2.4.0" description = "Packs for Redis modules into a distributable format" authors = ["Redis OSS "] license = "BSD-2-Clause" @@ -19,6 +19,7 @@ classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'License :: OSI Approved :: BSD License', 'Development Status :: 4 - Beta', diff --git a/tox.ini b/tox.ini index 8a339ec..d8a6554 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,6 @@ [tox] minversion = 3.2.0 isolated_build = True -envlist = {python3.6,python3.7,python3.8,python3.9,python3.10} [main] graph_version = 1.0.12