diff --git a/README.md b/README.md index a085544..717b56d 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ and a package using [pyo3](https://github.com/pyo3/pyo3) will expose the functio - 64 bit operating system ## Published Versions -We currently build for x86_64 platforms only, Windows, macOS, and Ubuntu, for python versions 3.6, 3.7, 3.8, and 3.9. +We currently build for x86_64 platforms only, Windows, macOS, and Ubuntu, for python versions 3.6 - 3.11. ## Building If for any reason, the published wheels do not match your architecture or if you have a particularly old version of glibc that isn't sufficiently accounted for in our current build matrix, or you just want to build it yourself, the following build instructions should help. diff --git a/packages/pyo3/Cargo.toml b/packages/pyo3/Cargo.toml index 4fd2d43..6c32350 100644 --- a/packages/pyo3/Cargo.toml +++ b/packages/pyo3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graspologic_native" -version = "1.1.2" +version = "1.2.0" authors = ["daxpryce@microsoft.com"] edition = "2018" license = "MIT" @@ -10,9 +10,9 @@ readme = "README.md" [package.metadata.maturin] maintainer = "Dax Pryce" maintainer-email = "daxpryce@microsoft.com" -requires-python = ">=3.6,<3.11" +requires-python = ">=3.6,<3.12" project-url = {"Github" = "https://github.com/microsoft/graspologic-native", "Graspologic"="https://github.com/microsoft/graspologic"} -classifier = ["Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: Implementation :: CPython", "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", "Topic :: Scientific/Engineering :: Mathematics"] +classifier = ["Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: Implementation :: CPython", "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 :: Mathematics"] [lib] name = "graspologic_native"