diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2430cb6..fdf2f30 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 -U pip setuptools wheel diff --git a/setup.cfg b/setup.cfg index d734fc2..ce1709a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 1.0.1 +version = 1.0.2 description = Super lightweight function registries for your library url = https://github.com/explosion/catalogue author = Explosion @@ -16,21 +16,19 @@ classifiers = Operating System :: POSIX :: Linux Operating System :: MacOS :: MacOS X Operating System :: Microsoft :: Windows - Programming Language :: Python :: 2 - Programming Language :: Python :: 2.7 Programming Language :: Python :: 3 - Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Scientific/Engineering [options] zip_safe = true include_package_data = true -python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.* +python_requires = >=3.6 install_requires = zipp>=0.5; python_version < "3.8" typing-extensions>=3.6.4; python_version < "3.8"