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

Commit

Permalink
Add support for Python 3.11 (#8)
Browse files Browse the repository at this point in the history
* Add support for Python 3.11

* bump versions to 0.9.1

* add 3.11 to setup.cfg
  • Loading branch information
wbarnha authored Oct 25, 2022
1 parent bca3b3e commit 91e60f2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
py_ver: ['3.7', '3.8', '3.9', '3.10']
py_ver: ['3.7', '3.8', '3.9', '3.10', '3.11']
rocksdb_ver: ['v6.29.3', 'v6.25.3', 'v6.11.4']

steps:
- uses: actions/checkout@v2
name: 'Checkout source repository'

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
name: 'Set up Python ${{ matrix.py_ver }}'
with:
python-version: ${{ matrix.py_ver }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- uses: actions/checkout@v2
name: 'Checkout source repository'

- uses: actions/setup-python@v2
name: 'Set up Python 3.10'
- uses: actions/setup-python@v4
name: 'Set up Python 3.11'
with:
python-version: '3.10'
python-version: '3.11'

- name: 'Install cibuildwheel'
run: |
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = rocksdb
version = 0.9.0
version = 0.9.1
description = Python bindings for RocksDB
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand All @@ -20,6 +20,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Database


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

setup(
name="faust-streaming-rocksdb",
version='0.9.0',
version='0.9.1',
description="Python bindings for RocksDB",
keywords='rocksdb',
author='Ming Hsuan Tu',
Expand Down

0 comments on commit 91e60f2

Please sign in to comment.