From 312c46d37509c7717315d6cda1977aa7bdad1ef1 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Sun, 24 Oct 2021 09:54:08 +0300 Subject: [PATCH] Python 3.10 support, trove, and ci --- .circleci/config.yml | 3 +++ pyproject.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ee43f46..8c99b0e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -62,6 +62,8 @@ commands: - run: name: build sdist and wheels command: | + # https://github.com/python-poetry/poetry/issues/4210 + poetry config experimental.new-installer false poetry build - run: @@ -121,6 +123,7 @@ python-versions: &python-versions - "3.7.9" - "3.8.9" - "3.9.4" + - "3.10.0" - "latest" workflows: diff --git a/pyproject.toml b/pyproject.toml index fe43b56..d259d3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers=[ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', 'License :: OSI Approved :: BSD License', 'Development Status :: 5 - Production/Stable' ]