Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
KissPeter committed Jul 31, 2024
2 parents 94cf187 + 944d517 commit 625e86c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest] # , macos-latest, windows-latest
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', 'pypy-3.8' ]
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12.0-alpha.4' ]
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
[![Pypi downloads](https://img.shields.io/pypi/dw/redis-streams)](https://pypistats.org/packages/redis-streams)


# Redis-Streams

This package builds on [Redis Streams](https://redis.io/topics/streams-intro) and provides an easy to use interface for batch collection and processing. Simplifies the consumer group and consumers management.
Designed for a highly available, scalable and distributed environment, it thus offers, in addition to the main functionality, monitoring and scaling capabilities.

Expand Down
4 changes: 2 additions & 2 deletions redis_streams/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PACKAGE = "redis-batch"
__version__ = "0.1.0"
PACKAGE = "redis-streams"
__version__ = "0.2.0"
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ def get_requirements():
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10'
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
python_requires='>=3.6, <4',
package_data={"redis_streams": ['*.py']},
Expand Down

0 comments on commit 625e86c

Please sign in to comment.