Skip to content

Commit 9a47768

Browse files
committed
bump version to 3.0.1
1 parent 239718b commit 9a47768

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/build.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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
@@ -22,9 +22,7 @@ jobs:
2222
- name: Build wheels
2323
uses: pypa/[email protected]
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

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
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

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ Usage
4141
ChangeLog
4242
----------
4343

44+
Version 3.0.1
45+
~~~~~~~~~~~~~~~
46+
+ Add support for Python 3.11
47+
4448
Versoin 3.0.0
4549
~~~~~~~~~~~~~~~
4650

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_tests(self):
5555

5656
setup(
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',

0 commit comments

Comments
 (0)