From 125828adb96e4f0dad63f9c8940316b9a996fc45 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 14 Oct 2022 08:24:50 +0200 Subject: [PATCH 1/3] Add python 3.11 rc to CI --- azure-pipelines.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 3840094..3b12389 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,6 +51,15 @@ jobs: Python310Mac: imageName: 'macos-latest' python.version: '3.10' + Python311Linux: + imageName: 'ubuntu-latest' + python.version: '3.11.0-rc.2' + Python311Windows: + imageName: 'windows-latest' + python.version: '3.11.0-rc.2' + Python311Mac: + imageName: 'macos-latest' + python.version: '3.11.0-rc.2' maxParallel: 4 pool: vmImage: $(imageName) @@ -60,6 +69,7 @@ jobs: inputs: versionSpec: '$(python.version)' architecture: 'x64' + allowUnstable: true - script: | python -m pip install --upgrade pip setuptools From 4b3f884e3a15bdaee35cdf542bea336392846ec6 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 14 Oct 2022 13:53:33 +0200 Subject: [PATCH 2/3] Add python 3.11 classifier --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4c53120..ad8b89d 100755 --- a/setup.py +++ b/setup.py @@ -121,6 +121,7 @@ def setup_package(): "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Scientific/Engineering", ], cmdclass={"build_ext": build_ext_subclass}, From da22cebf40e7174ba4fa05aaf425a9bcf0013765 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Fri, 14 Oct 2022 13:52:53 +0200 Subject: [PATCH 3/3] Set version to v2.0.7 --- cymem/about.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cymem/about.py b/cymem/about.py index 56b29ef..880458e 100644 --- a/cymem/about.py +++ b/cymem/about.py @@ -1,5 +1,5 @@ __title__ = "cymem" -__version__ = "2.0.6" +__version__ = "2.0.7" __summary__ = "Manage calls to calloc/free through Cython" __uri__ = "https://github.com/explosion/cymem" __author__ = "Matthew Honnibal"