Skip to content

Commit 2926a7c

Browse files
authored
Python 3.10 support (#384)
* master -> main * add py 3.10 * update workflows * debug workflows * bump version
1 parent 691373b commit 2926a7c

6 files changed

+7
-6
lines changed

.github/workflows/bazel_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
python-version: [3.8]
14+
python-version: ['3.8', '3.9']
1515
os: [macos-latest, ubuntu-latest]
1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/pythonpublish-linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ jobs:
1212
- cp37-cp37m
1313
- cp38-cp38
1414
- cp39-cp39
15+
- cp10-cp10
1516

1617
runs-on: ubuntu-latest
1718
container: quay.io/pypa/manylinux2014_x86_64

.github/workflows/pythonpublish-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: macos-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9]
12+
python-version: ['3.7', '3.8', '3.9', '3.10']
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/pythonpublish-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: windows-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.7, 3.8, 3.9]
12+
python-version: ['3.7', '3.8', '3.9', '3.10']
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ${{ matrix.os }}
3535
strategy:
3636
matrix:
37-
python-version: [3.7, 3.8, 3.9]
37+
python-version: ['3.7', '3.8', '3.9', '3.10']
3838
os: [macos-latest, ubuntu-latest, windows-latest]
3939
steps:
4040
- uses: actions/checkout@v2
@@ -86,7 +86,7 @@ jobs:
8686
runs-on: ${{ matrix.os }}
8787
strategy:
8888
matrix:
89-
python-version: [3.7, 3.8, 3.9]
89+
python-version: ['3.7', '3.8', '3.9', '3.10']
9090
os: [macos-latest, ubuntu-latest, windows-latest]
9191
steps:
9292
- uses: actions/checkout@v2

tenseal/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.9"
1+
__version__ = "0.3.10"

0 commit comments

Comments
 (0)