Skip to content
This repository was archived by the owner on Sep 19, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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