stable

python-valkey-6.0.2-1.fc39

FEDORA-2024-8320864b6d created by bugant a year ago for Fedora 39

Bump to version 6.0.2 (#2312049)


Skip ocsp extra for Fedora release prior to F41


Bump to 6.0.1

How to install

Updates may require up to 24 hours to propagate to mirrors. If the following command doesn't work, please retry later:

sudo dnf upgrade --refresh --advisory=FEDORA-2024-8320864b6d

This update has been submitted for testing by bugant.

a year ago

This update's test gating status has been changed to 'ignored'.

a year ago

This update has obsoleted python-valkey-6.0.1-3.fc39, and has inherited its bugs and notes.

a year ago

This update has been pushed to testing.

a year ago
User Icon aligx commented & provided feedback a year ago
karma

Installed and tested basic functionalities found here and results are as expected:

[root@fedora /]# dnf upgrade --enablerepo=updates-testing --refresh --advisory=FEDORA-2024-8320864b6d                                                                                                                      
[root@fedora /]# dnf config-manager --set-enabled updates-testing
[root@fedora /]# dnf install python3-valkey 

[root@fedora /]# rpm -qa | grep valkey
python3-valkey-6.0.2-1.fc39.noarch

[root@fedora /]# cat /etc/fedora-release 
Fedora release 39 (Thirty Nine)

[root@fedora /]# python3
Python 3.12.5 (main, Aug  7 2024, 00:00:00) [GCC 13.3.1 20240522 (Red Hat 13.3.1-1)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import valkey
>>> r = valkey.Valkey(host='localhost', port=6379, db=0)
>>> r.set('foo', 'bar')
True
>>> r.get('foo')
b'bar'
>>> pool = valkey.ConnectionPool(host='localhost', port=6379, db=0)
>>> r = valkey.Valkey(connection_pool=pool)
>>> pipe = r.pipeline()
>>> pipe.set('foo', 5)
<valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)>
>>> pipe.set('bar', 18.5)
<valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)>
>>> pipe.set('blee', "hello world!")
<valkey.client.Pipeline(<valkey.connection.ConnectionPool(<valkey.connection.Connection(host=localhost,port=6379,db=0)>)>)>
>>> pipe.execute()
[True, True, True]

>>> p = r.pubsub()
>>> p.subscribe('my-first-channel', 'my-second-channel')
>>> p.get_message()
{'type': 'subscribe', 'pattern': None, 'channel': b'my-first-channel', 'data': 1}
>>> p.get_message()
{'type': 'subscribe', 'pattern': None, 'channel': b'my-second-channel', 'data': 2}
>>> p.get_message()
>>> 

This update has been submitted for stable by bodhi.

a year ago

This update has been pushed to stable.

a year ago

Please log in to add feedback.

Metadata
Type
enhancement
Karma
1
Signed
Content Type
RPM
Test Gating
Autopush Settings
Unstable by Karma
-3
Stable by Karma
3
Stable by Time
7 days
Dates
submitted
a year ago
in testing
a year ago
in stable
a year ago
approved
a year ago

Automated Test Results