Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.

Commit 91e60f2

Browse files
authored
Add support for Python 3.11 (#8)
* Add support for Python 3.11 * bump versions to 0.9.1 * add 3.11 to setup.cfg
1 parent bca3b3e commit 91e60f2

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
strategy:
5353
matrix:
5454
os: [ubuntu-latest]
55-
py_ver: ['3.7', '3.8', '3.9', '3.10']
55+
py_ver: ['3.7', '3.8', '3.9', '3.10', '3.11']
5656
rocksdb_ver: ['v6.29.3', 'v6.25.3', 'v6.11.4']
5757

5858
steps:
5959
- uses: actions/checkout@v2
6060
name: 'Checkout source repository'
6161

62-
- uses: actions/setup-python@v2
62+
- uses: actions/setup-python@v4
6363
name: 'Set up Python ${{ matrix.py_ver }}'
6464
with:
6565
python-version: ${{ matrix.py_ver }}

.github/workflows/dist.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
- uses: actions/checkout@v2
2424
name: 'Checkout source repository'
2525

26-
- uses: actions/setup-python@v2
27-
name: 'Set up Python 3.10'
26+
- uses: actions/setup-python@v4
27+
name: 'Set up Python 3.11'
2828
with:
29-
python-version: '3.10'
29+
python-version: '3.11'
3030

3131
- name: 'Install cibuildwheel'
3232
run: |

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = rocksdb
3-
version = 0.9.0
3+
version = 0.9.1
44
description = Python bindings for RocksDB
55
long_description = file: README.rst
66
long_description_content_type = text/x-rst
@@ -20,6 +20,7 @@ classifiers =
2020
Programming Language :: Python :: 3.8
2121
Programming Language :: Python :: 3.9
2222
Programming Language :: Python :: 3.10
23+
Programming Language :: Python :: 3.11
2324
Topic :: Database
2425

2526

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

4949
setup(
5050
name="faust-streaming-rocksdb",
51-
version='0.9.0',
51+
version='0.9.1',
5252
description="Python bindings for RocksDB",
5353
keywords='rocksdb',
5454
author='Ming Hsuan Tu',

0 commit comments

Comments
 (0)