File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 88 runs-on : ${{ matrix.os }}
99 strategy :
1010 matrix :
11- os : [ubuntu-20.04, windows-2019, macos-10.15 ]
11+ os : [ubuntu-20.04, windows-2019, macos-11 ]
1212
1313 steps :
1414 - uses : actions/checkout@v3
2222 - name : Build wheels
2323 uses : pypa/cibuildwheel@v2.11.3
2424 env :
25- # configure cibuildwheel to build native archs ('auto'), and some
26- # emulated ones
27- CIBW_ARCHS_LINUX : auto aarch64
25+ CIBW_ARCHS : all
2826 - uses : actions/upload-artifact@v3
2927 with :
3028 path : ./wheelhouse/*.whl
Original file line number Diff line number Diff line change 1010 - uses : actions/checkout@master
1111 - uses : actions/setup-python@v4
1212 with :
13- python-version : " 3.8 "
13+ python-version : " 3.10 "
1414 architecture : " x64"
1515 - run : python -m pip install -U pip wheel setuptools
1616 - run : python -m pip install -r test-requirements.txt
Original file line number Diff line number Diff line change 4141 ChangeLog
4242----------
4343
44+ Version 3.0.1
45+ ~~~~~~~~~~~~~~~
46+ + Add support for Python 3.11
47+
4448Versoin 3.0.0
4549~~~~~~~~~~~~~~~
4650
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def run_tests(self):
5555
5656setup (
5757 name = 'bencoder.pyx' ,
58- version = '3.0.0 ' ,
58+ version = '3.0.1 ' ,
5959 description = 'Yet another bencode implementation in Cython' ,
6060 long_description = open ('README.rst' , 'r' ).read (),
6161 author = 'whtsky' ,
@@ -81,6 +81,7 @@ def run_tests(self):
8181 'Programming Language :: Python :: 3.8' ,
8282 'Programming Language :: Python :: 3.9' ,
8383 'Programming Language :: Python :: 3.10' ,
84+ 'Programming Language :: Python :: 3.11' ,
8485 'Programming Language :: Python :: Implementation :: CPython' ,
8586 'Programming Language :: Python :: Implementation :: PyPy' ,
8687 'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments