Skip to content

Commit 5289660

Browse files
feat: update wasm bucketing to 1.31.2, update min python version to 3.9
1 parent 4fd2a03 commit 5289660

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This SDK allows your application to interface with the [DevCycle Bucketing API](
66

77
## Requirements
88

9-
* Python 3.8+
9+
* Python 3.9+
1010

1111
## Installation
1212

178 Bytes
Binary file not shown.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ addopts = "--benchmark-skip --showlocals"
55

66
# black options
77
[tool.black]
8-
target-version = ['py38']
8+
target-version = ['py39']
99
extend-exclude = '_pb2\.pyi?$'
1010

1111
# mypy options
1212
[tool.mypy]
13-
python_version = "3.8"
13+
python_version = "3.9"
1414
exclude = "django-app"
1515

1616
# See https://mypy.readthedocs.io/en/stable/running_mypy.html#missing-library-stubs-or-py-typed-marker

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ wasmtime ~= 30.0.0
55
protobuf ~= 5.29.3
66
openfeature-sdk ~= 0.8.0
77
launchdarkly-eventsource ~= 1.2.1
8-
responses~=0.25.6
8+
responses~=0.25.6
9+
python>=3.9

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
url="https://github.com/devcycleHQ/python-server-sdk",
2525
keywords=["DevCycle"],
2626
install_requires=REQUIRES,
27-
python_requires=">=3.8",
27+
python_requires=">=3.9",
2828
packages=find_packages(),
2929
package_data={
3030
"": ["VERSION.txt"],

update_wasm_lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
BUCKETING_LIB_VERSION="1.25.3"
3+
BUCKETING_LIB_VERSION="1.31.2"
44

55
if [[ -n "$1" ]]; then
66
BUCKETING_LIB_VERSION="$1"

0 commit comments

Comments
 (0)