Skip to content

Commit 482dd4a

Browse files
authored
Merge pull request #17 from aosingh/dev/v1.2.1
v1.2.1 development
2 parents 99431af + 0cffd82 commit 482dd4a

File tree

5 files changed

+23
-21
lines changed

5 files changed

+23
-21
lines changed

.github/workflows/sqlite_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@v4
1717

1818
- name: Setup Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: ${{ matrix.python-version }}
2222

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
billiard==4.2.0
22
click==8.1.7
3-
msgpack==1.0.7
4-
pyzmq==25.1.1
5-
tornado==6.3.3
3+
msgpack==1.0.8
4+
pyzmq==26.0.3
5+
tornado==6.4.1

requirements_dev.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
coverage==7.3.2
1+
coverage==7.5.3
22
pip
3-
pytest==7.4.3
3+
build
4+
wheel
5+
pytest==8.2.2
46
setuptools
57
twine

setup.cfg

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = sqlite_rx
3-
version = 1.2.0
3+
version = 1.2.1
44
description = Python SQLite Client and Server
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -48,11 +48,11 @@ scripts =
4848
bin/curve-keygen
4949
install_requires =
5050
billiard==4.2.0
51-
msgpack==1.0.7
52-
pyzmq==25.1.1
53-
tornado==6.3.3
51+
msgpack==1.0.8
52+
pyzmq==26.0.3
53+
tornado==6.4.1
5454
test_require =
55-
pytest==7.4.3
55+
pytest==8.2.2
5656
coverage==7.3.2
5757
python_requires = >=3.8
5858

@@ -67,9 +67,9 @@ console_scripts =
6767

6868
[options.extras_require]
6969
cli =
70-
click==8.0.4
71-
rich==12.0.1
72-
pygments==2.11.2
70+
click==8.1.7
71+
rich==13.7.1
72+
pygments==2.18.0
7373

7474
[coverage:run]
7575
branch = True

setup.py

Lines changed: 7 additions & 7 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.0'
17+
VERSION = '1.2.1'
1818
DISTNAME = 'sqlite_rx'
1919
LICENSE = 'MIT License'
2020
AUTHOR = 'Abhishek Singh'
@@ -25,15 +25,15 @@
2525

2626
PACKAGES = ['sqlite_rx']
2727

28-
INSTALL_REQUIRES = ['msgpack==1.0.7',
29-
'pyzmq==25.1.1',
30-
'tornado==6.3.3',
28+
INSTALL_REQUIRES = ['msgpack==1.0.8',
29+
'pyzmq==26.0.3',
30+
'tornado==6.4.1',
3131
'billiard==4.2.0']
3232

33-
CLI_REQUIRES = ['click==8.1.7', 'rich==13.6.0', 'pygments==2.16.1']
33+
CLI_REQUIRES = ['click==8.1.7', 'rich==13.7.1', 'pygments==2.18.0']
3434

35-
TEST_REQUIRE = ['pytest==7.4.3',
36-
'coverage==7.3.2']
35+
TEST_REQUIRE = ['pytest==8.2.2',
36+
'coverage==7.5.3']
3737

3838
classifiers = [
3939
'Topic :: Database :: Database Engines/Servers',

0 commit comments

Comments
 (0)