Skip to content

Commit

Permalink
Merge pull request #51 from adrianeboyd/chore/v1.0.2
Browse files Browse the repository at this point in the history
Require python 3.6+, set version to v1.0.2
  • Loading branch information
adrianeboyd authored Oct 18, 2022
2 parents ef4fd81 + 590ecb4 commit 5790e4e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
10 changes: 10 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -60,6 +69,7 @@ jobs:
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
allowUnstable: true

- script: |
python -m pip install -U pip setuptools wheel
Expand Down
8 changes: 3 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 5790e4e

Please sign in to comment.