Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkliment <kliment@0xfb.com>2022-03-13 16:32:03 +0300
committerGitHub <noreply@github.com>2022-03-13 16:32:03 +0300
commitddd5fa1d909e1208cebd6ca92e483a1dbacd9cbf (patch)
tree558ea8f8ffdb652716fcb565e9af17d87c22544c
parent215f4d868a7da5273acba55c50e12d03cac3bc21 (diff)
parent2a901a0b0a1b84e052ac382c21ded412f24e2881 (diff)
Merge pull request #1227 from hroncok/ci-3.11
Build wheels for Python 3.9 and 3.10
-rw-r--r--.github/workflows/pypi-mac.yml2
-rw-r--r--.github/workflows/pypi-manylinux.yml2
-rw-r--r--.github/workflows/pypi-win.yml2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pypi-mac.yml b/.github/workflows/pypi-mac.yml
index 4c3edf9..c1cdfd8 100644
--- a/.github/workflows/pypi-mac.yml
+++ b/.github/workflows/pypi-mac.yml
@@ -15,7 +15,7 @@ jobs:
matrix:
os: [macos-latest]
architecture: [x64]
- python-version: [3.6, 3.7, 3.8]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout
diff --git a/.github/workflows/pypi-manylinux.yml b/.github/workflows/pypi-manylinux.yml
index 9c02caf..cf5a6c4 100644
--- a/.github/workflows/pypi-manylinux.yml
+++ b/.github/workflows/pypi-manylinux.yml
@@ -23,7 +23,7 @@ jobs:
- name: Build manylinux Python wheels
uses: RalfG/python-wheels-manylinux-build@v0.3.3-manylinux2014_x86_64
with:
- python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38'
+ python-versions: 'cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310'
build-requirements: 'cython'
- name: Upload artifacts for inspection
uses: actions/upload-artifact@v2
diff --git a/.github/workflows/pypi-win.yml b/.github/workflows/pypi-win.yml
index 19333b2..77c06fa 100644
--- a/.github/workflows/pypi-win.yml
+++ b/.github/workflows/pypi-win.yml
@@ -15,7 +15,7 @@ jobs:
matrix:
os: [windows-latest]
architecture: [x64, x86]
- python-version: [3.6, 3.7, 3.8]
+ python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout