Skip to content
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
13 changes: 6 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
rocksdb-version: ['v6.29.5', 'v7.10.2', 'v8.11.4', 'v9.10.0']
rocksdb-version: ['v10.0.1', 'v10.7.5']

steps:
- uses: actions/cache@v4
Expand Down Expand Up @@ -68,8 +68,8 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12', '3.13']
rocksdb-version: ['v6.29.5', 'v7.10.2', 'v8.11.4', 'v9.10.0']
python-version: ['3.11', '3.12', '3.13']
rocksdb-version: ['v10.0.1', 'v10.7.5']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -113,9 +113,8 @@ jobs:
fail-fast: false
matrix:
os:
- { arch: 'Intel', runner: 'macos-13' }
- { arch: 'Arm', runner: 'macos-latest' }
python-version: ['3.10', '3.11', '3.12', '3.13']
- macos-15
python-version: ['3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -149,7 +148,7 @@ jobs:
os:
- { arch: 'x64', runner: 'ubuntu-latest' }
- { arch: 'arm', runner: 'ubuntu-24.04-arm' }
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.11', '3.12', '3.13']
debian-dist: [bullseye, bookworm]
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rocksdb"
version = "0.9.3"
version = "0.10.0"
description = "Python bindings for RocksDB"
readme = "README.md"
authors = [
Expand All @@ -13,7 +13,7 @@ maintainers = [
{ name = "Jan Segre", email = "jan@hathor.network" },
]
#url = "https://github.com/HathorNetwork/python-rocksdb"
requires-python = ">=3.10"
requires-python = ">=3.11"
#license = "BSD-3-Clause"
license = {file = "LICENSE"}
keywords = ["rocksdb", "bindings"]
Expand All @@ -31,7 +31,6 @@ classifiers = [

# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_brew_prefix(package):
include_dirs = []
library_dirs = []
extra_compile_args = [
"-std=c++17",
"-std=c++20",
"-O2",
"-fno-strict-aliasing",
"-fno-rtti",
Expand All @@ -22,7 +22,7 @@ def get_brew_prefix(package):

if platform.system() == "Darwin":
extra_compile_args.extend([
"-mmacosx-version-min=10.7",
"-mmacosx-version-min=11.0",
"-stdlib=libc++",
"-Wno-unreachable-code",
])
Expand Down