From 203c10040439c9e85a15dce8929293e51179bb23 Mon Sep 17 00:00:00 2001 From: Tarun Chawla Date: Thu, 8 Jun 2023 11:32:35 -0500 Subject: [PATCH] Upgraded python support for 3.11 (#211) Solves issue: #68 This PR adds support for latest python 3.11 version Changed workflow to support the latest version Changed project dependency to support 3.11.x versions Signed-off-by: Tarun Chawla --- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48a0c2be..d5860f77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index af84c49a..a339ae5f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,14 +16,15 @@ classifiers = [ "Intended Audience :: Developers", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10" + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11" ] repository = "https://github.com/numaproj/numalogic" documentation = "https://numalogic.numaproj.io/" homepage = "https://numalogic.numaproj.io/" [tool.poetry.dependencies] -python = ">=3.9, <3.11" +python = ">=3.9, <3.12" numpy = "^1.23" pandas = "^2.0" scikit-learn = "^1.2"