Skip to content

Commit 5790e4e

Browse files
authored
Merge pull request #51 from adrianeboyd/chore/v1.0.2
Require python 3.6+, set version to v1.0.2
2 parents ef4fd81 + 590ecb4 commit 5790e4e

2 files changed

Lines changed: 13 additions & 5 deletions

File tree

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 -U pip setuptools wheel

setup.cfg

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 1.0.1
2+
version = 1.0.2
33
description = Super lightweight function registries for your library
44
url = https://github.com/explosion/catalogue
55
author = Explosion
@@ -16,21 +16,19 @@ classifiers =
1616
Operating System :: POSIX :: Linux
1717
Operating System :: MacOS :: MacOS X
1818
Operating System :: Microsoft :: Windows
19-
Programming Language :: Python :: 2
20-
Programming Language :: Python :: 2.7
2119
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.5
2320
Programming Language :: Python :: 3.6
2421
Programming Language :: Python :: 3.7
2522
Programming Language :: Python :: 3.8
2623
Programming Language :: Python :: 3.9
2724
Programming Language :: Python :: 3.10
25+
Programming Language :: Python :: 3.11
2826
Topic :: Scientific/Engineering
2927

3028
[options]
3129
zip_safe = true
3230
include_package_data = true
33-
python_requires = >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
31+
python_requires = >=3.6
3432
install_requires =
3533
zipp>=0.5; python_version < "3.8"
3634
typing-extensions>=3.6.4; python_version < "3.8"

0 commit comments

Comments
 (0)