Skip to content

Commit a4f82ab

Browse files
committed
v1.3.0
- updated core dependencies - updated readme - updated supported Python versions
1 parent 78a2230 commit a4f82ab

4 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/sqlite_build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
os: [macos-latest, windows-latest, ubuntu-latest]
12-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy3.10']
12+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', 'pypy-3.8', 'pypy-3.9', 'pypy3.10', 'pypy3.11',
13+
'3.13t']
1314

1415
steps:
1516
- name: Checkout

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Python 3.10](https://img.shields.io/badge/python-3.10-blue.svg)](https://www.python.org/downloads/release/python-3100/)
88
[![Python 3.11](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/release/python-3110/)
99
[![Python 3.12](https://img.shields.io/badge/python-3.12-blue.svg)](https://www.python.org/downloads/release/python-3120/)
10-
10+
[![Python 3.13](https://img.shields.io/badge/python-3.13-blue.svg)](https://www.python.org/downloads/release/python-3130/)
1111

1212
[![PyPy3.8](https://img.shields.io/badge/python-PyPy3.8-blue.svg)](https://www.pypy.org/download.html)
1313
[![PyPy3.9](https://img.shields.io/badge/python-PyPy3.9-blue.svg)](https://www.pypy.org/download.html)

setup.cfg

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sqlite_rx
3-
version = 1.2.2
3+
version = 1.3.0
44
description = Python SQLite Client and Server
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -49,9 +49,9 @@ scripts =
4949
bin/curve-keygen
5050
install_requires =
5151
billiard==4.2.1
52-
msgpack==1.1.0
53-
pyzmq==26.2.0
54-
tornado==6.4.2
52+
msgpack==1.1.1
53+
pyzmq==27.0.2
54+
tornado==6.5.2
5555
test_require =
5656
pytest
5757
coverage
@@ -68,9 +68,9 @@ console_scripts =
6868

6969
[options.extras_require]
7070
cli =
71-
click==8.1.7
72-
rich==13.9.3
73-
pygments==2.18.0
71+
click==8.2.1
72+
rich==14.1.0
73+
pygments==2.19.2
7474

7575
[coverage:run]
7676
branch = True

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
1515
long_description = f.read()
1616

17-
VERSION = '1.2.2'
17+
VERSION = '1.3.0'
1818
DISTNAME = 'sqlite_rx'
1919
LICENSE = 'MIT License'
2020
AUTHOR = 'Abhishek Singh'
@@ -25,12 +25,12 @@
2525

2626
PACKAGES = ['sqlite_rx']
2727

28-
INSTALL_REQUIRES = ['msgpack==1.1.0',
29-
'pyzmq==26.2.0',
30-
'tornado==6.4.2',
28+
INSTALL_REQUIRES = ['msgpack==1.1.1',
29+
'pyzmq==27.0.2',
30+
'tornado==6.5.2',
3131
'billiard==4.2.1']
3232

33-
CLI_REQUIRES = ['click==8.1.7', 'rich==13.9.3', 'pygments==2.18.0']
33+
CLI_REQUIRES = ['click==8.2.1', 'rich==14.1.0', 'pygments==2.19.2']
3434

3535
TEST_REQUIRE = ['pytest',
3636
'coverage']

0 commit comments

Comments
 (0)