Skip to content

Commit e1642ed

Browse files
authored
Merge pull request #37 from adrianeboyd/chore/v2.0.7
Set version to v2.0.7, update CI
2 parents c7c5bab + da22ceb commit e1642ed

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

azure-pipelines.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,15 @@ jobs:
5151
Python310Mac:
5252
imageName: 'macos-latest'
5353
python.version: '3.10'
54+
Python311Linux:
55+
imageName: 'ubuntu-latest'
56+
python.version: '3.11.0-rc.2'
57+
Python311Windows:
58+
imageName: 'windows-latest'
59+
python.version: '3.11.0-rc.2'
60+
Python311Mac:
61+
imageName: 'macos-latest'
62+
python.version: '3.11.0-rc.2'
5463
maxParallel: 4
5564
pool:
5665
vmImage: $(imageName)
@@ -60,6 +69,7 @@ jobs:
6069
inputs:
6170
versionSpec: '$(python.version)'
6271
architecture: 'x64'
72+
allowUnstable: true
6373

6474
- script: |
6575
python -m pip install --upgrade pip setuptools

cymem/about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = "cymem"
2-
__version__ = "2.0.6"
2+
__version__ = "2.0.7"
33
__summary__ = "Manage calls to calloc/free through Cython"
44
__uri__ = "https://github.com/explosion/cymem"
55
__author__ = "Matthew Honnibal"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ def setup_package():
121121
"Programming Language :: Python :: 3.8",
122122
"Programming Language :: Python :: 3.9",
123123
"Programming Language :: Python :: 3.10",
124+
"Programming Language :: Python :: 3.11",
124125
"Topic :: Scientific/Engineering",
125126
],
126127
cmdclass={"build_ext": build_ext_subclass},

0 commit comments

Comments
 (0)