From 947f68a80d97c4a5621ee681ae01602ebd883f3a Mon Sep 17 00:00:00 2001
From: Jan Segre <jan@segre.in>
Date: Mon, 29 Aug 2022 16:37:27 +0200
Subject: [PATCH] Update C++ standard from c++11 to c++17 to build on latest
 rocksdb

---
 setup.cfg | 2 +-
 setup.py  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/setup.cfg b/setup.cfg
index 333305a..25c15a5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -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
diff --git a/setup.py b/setup.py
index 2450eef..e902955 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ from pkgconfig import PackageNotFoundError
 from setuptools import Extension, setup
 
 extra_compile_args = [
-    '-std=c++11',
+    '-std=c++17',
     '-O3',
     '-Wall',
     '-Wextra',
-- 
GitLab