Skip to content

Commit

Permalink
Upgraded python support for 3.11 (#211)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
tcchawla committed Jun 8, 2023
1 parent 9ebc32f commit 203c100
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 203c100

Please sign in to comment.