Skip to content

Commit 7fac53f

Browse files
fix: sync Python package version with Rust crate (#54)
- Update python/Cargo.toml version to 0.9.3 (match main crate) - Use dynamic versioning in pyproject.toml (reads from Cargo.toml) - Update author email to josh.rotenberg@redis.com - Add Python patterns to .gitignore - Remove accidentally committed __pycache__ and .so files
1 parent 0e346d7 commit 7fac53f

File tree

7 files changed

+17
-3
lines changed

7 files changed

+17
-3
lines changed

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,17 @@ lcov.info
2626
# Backup files
2727
*.bak
2828
*.backup
29+
30+
# Python
31+
__pycache__/
32+
*.py[cod]
33+
*$py.class
34+
*.so
35+
.Python
36+
build/
37+
dist/
38+
*.egg-info/
39+
.eggs/
40+
*.whl
41+
.venv/
42+
venv/

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-cloud-py"
3-
version = "0.1.0"
3+
version = "0.9.3"
44
edition = "2024"
55
rust-version = "1.89"
66
authors = ["Josh Rotenberg <josh.rotenberg@redis.com>"]

python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "maturin"
44

55
[project]
66
name = "redis-cloud"
7-
version = "0.1.0"
7+
dynamic = ["version"]
88
description = "Python bindings for Redis Cloud REST API client"
99
readme = { file = "../README.md", content-type = "text/markdown" }
1010
license = { text = "MIT OR Apache-2.0" }
1111
authors = [
12-
{ name = "Josh Rotenberg", email = "joshrotenberg@gmail.com" }
12+
{ name = "Josh Rotenberg", email = "josh.rotenberg@redis.com" }
1313
]
1414
keywords = ["redis", "cloud", "api", "rest", "client"]
1515
classifiers = [
-706 Bytes
Binary file not shown.
-18.7 MB
Binary file not shown.
-165 Bytes
Binary file not shown.
-29.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)