From f2b7bc72d82954bac8495f48f2f886997f95273e Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Wed, 10 Jan 2024 12:09:06 +0400 Subject: [PATCH 1/2] test 3.12 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eebcbcf..98598af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest, windows-latest, macos-latest ] - python-version: ['3.9', '3.10', '3.11' ] + python-version: ['3.9', '3.10', '3.11', '3.12' ] # Steps represent a sequence of tasks that will be executed as part of the job steps: From cb454b0425be6b8e8f40b3c8ddfb0f25e0974e46 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Wed, 10 Jan 2024 12:09:57 +0400 Subject: [PATCH 2/2] remove upper bound on python --- poetry.lock | 5 +++-- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/poetry.lock b/poetry.lock index e2588eb..e8b305f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -549,6 +549,7 @@ files = [ numpy = [ {version = ">=1.22.4,<2", markers = "python_version < \"3.11\""}, {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, ] python-dateutil = ">=2.8.2" pytz = ">=2020.1" @@ -968,5 +969,5 @@ test = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "coverage-enable-subprocess [metadata] lock-version = "2.0" -python-versions = ">=3.9,<3.12" -content-hash = "da848e086d067a041f63e22f5eb00fe278daf16ac33e5202fba22f1b711999f6" +python-versions = ">=3.9" +content-hash = "f40d79935fff692941ae03267f36cf10dbc91f7e69bc55324521a44f97037732" diff --git a/pyproject.toml b/pyproject.toml index 07fb0dd..e70df3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ packages = [{include = "cvx"}] homepage = "https://www.cvxgrp.org/cvxcli" [tool.poetry.dependencies] -python = ">=3.9,<3.12" +python = ">=3.9" fire = "*" cvxbson = "*" requests = "*"