File tree 4 files changed +9
-6
lines changed
4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ${{ matrix.os }}
9
9
strategy :
10
10
matrix :
11
- os : [ubuntu-20.04, windows-2019, macos-10.15 ]
11
+ os : [ubuntu-20.04, windows-2019, macos-11 ]
12
12
13
13
steps :
14
14
- uses : actions/checkout@v3
22
22
- name : Build wheels
23
23
24
24
env :
25
- # configure cibuildwheel to build native archs ('auto'), and some
26
- # emulated ones
27
- CIBW_ARCHS_LINUX : auto aarch64
25
+ CIBW_ARCHS : all
28
26
- uses : actions/upload-artifact@v3
29
27
with :
30
28
path : ./wheelhouse/*.whl
Original file line number Diff line number Diff line change 10
10
- uses : actions/checkout@master
11
11
- uses : actions/setup-python@v4
12
12
with :
13
- python-version : " 3.8 "
13
+ python-version : " 3.10 "
14
14
architecture : " x64"
15
15
- run : python -m pip install -U pip wheel setuptools
16
16
- run : python -m pip install -r test-requirements.txt
Original file line number Diff line number Diff line change 41
41
ChangeLog
42
42
----------
43
43
44
+ Version 3.0.1
45
+ ~~~~~~~~~~~~~~~
46
+ + Add support for Python 3.11
47
+
44
48
Versoin 3.0.0
45
49
~~~~~~~~~~~~~~~
46
50
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def run_tests(self):
55
55
56
56
setup (
57
57
name = 'bencoder.pyx' ,
58
- version = '3.0.0 ' ,
58
+ version = '3.0.1 ' ,
59
59
description = 'Yet another bencode implementation in Cython' ,
60
60
long_description = open ('README.rst' , 'r' ).read (),
61
61
author = 'whtsky' ,
@@ -81,6 +81,7 @@ def run_tests(self):
81
81
'Programming Language :: Python :: 3.8' ,
82
82
'Programming Language :: Python :: 3.9' ,
83
83
'Programming Language :: Python :: 3.10' ,
84
+ 'Programming Language :: Python :: 3.11' ,
84
85
'Programming Language :: Python :: Implementation :: CPython' ,
85
86
'Programming Language :: Python :: Implementation :: PyPy' ,
86
87
'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments