Skip to content

Commit

Permalink
Build for 3.10 (#24)
Browse files Browse the repository at this point in the history
* Build for 3.10

It's possible we can build for 3.10 without too much effort, so I'm going to try to do that.  I can't create a build for just 3.10 on the 1.0.0 spot because our release process doesn't make that super easy, so I'm going to increment to 1.0.1 without actually making any changes.  If I get a build working I'll see about including a type stub in our package as well for 1.0.1 so people can rely on that too

* Build matrix update to include 3.10

* Apparently 3.10 has to be in string quotes for it to work

This may not matter in this case but... I'm trying it.

* update setup-python version to 2
  • Loading branch information
daxpryce authored Oct 15, 2021
1 parent a08ae93 commit aaf17a0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Materialize build number
Expand Down Expand Up @@ -38,13 +38,13 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
python_version: ["3.6", "3.7", "3.8", "3.9"]
python_version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{matrix.python_version}}
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python_version}}
python-version: "${{matrix.python_version}}"
- uses: actions/download-artifact@v2
with:
name: cargo-toml
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v2
with:
python-version: 3.8
- uses: actions/download-artifact@v2
Expand Down
4 changes: 2 additions & 2 deletions packages/pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graspologic_native"
version = "1.0.0"
version = "1.0.1"
authors = ["dwpryce@microsoft.com"]
edition = "2018"
license = "MIT"
Expand All @@ -10,7 +10,7 @@ readme = "README.md"
[package.metadata.maturin]
maintainer = "Dwayne Pryce"
maintainer-email = "dwpryce@microsoft.com"
requires-python = ">=3.6,<3.10"
requires-python = ">=3.6,<3.11"
project-url = {"Github" = "https://github.com/microsoft/graspologic-native", "Graspologic"="https://github.com/microsoft/graspologic"}
classifier = ["Development Status :: 3 - Alpha", "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", "Topic :: Scientific/Engineering :: Mathematics"]

Expand Down

0 comments on commit aaf17a0

Please sign in to comment.