Skip to content

Commit 9385d00

Browse files
committed
Prepare for v0.8 release
1 parent bf3f903 commit 9385d00

5 files changed

Lines changed: 17 additions & 22 deletions

File tree

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@ jobs:
99
strategy:
1010
matrix:
1111
python-version:
12-
- "3.6"
13-
- "3.7"
1412
- "3.8"
1513
- "3.9"
1614
- "3.10"
1715
- "3.11"
16+
- "3.12"
1817

1918
steps:
2019
- uses: actions/checkout@v3
@@ -30,11 +29,5 @@ jobs:
3029
pip install pre-commit==2.17
3130
3231
- name: Analysing the code with pre-commit checks
33-
if: ${{ matrix.python-version != '3.6' }}
3432
run: |
3533
pre-commit run --all-files
36-
37-
- name: Analysing the code with pre-commit checks
38-
if: ${{ matrix.python-version == '3.6' }}
39-
run: |
40-
pre-commit run -c .pre-commit-config-py36.yaml --all-files

.github/workflows/smoke-test.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,11 @@ jobs:
4343
os:
4444
- ubuntu-20.04
4545
python-version:
46-
- "3.6"
47-
- "3.7"
4846
- "3.8"
4947
- "3.9"
5048
- "3.10"
5149
- "3.11"
50+
- "3.12"
5251
driver:
5352
- mysql
5453
- https
@@ -59,37 +58,37 @@ jobs:
5958
# Manually include a few runs of specific configurations
6059
include:
6160
- os: ubuntu-20.04
62-
python-version: "3.10"
61+
python-version: "3.11"
6362
driver: mysql
6463
pure-python: 1
6564
buffered: 1
6665
# - os: ubuntu-20.04
67-
# python-version: "3.10"
66+
# python-version: "3.11"
6867
# driver: mysql
6968
# pure-python: 1
7069
# buffered: 0
7170
# - os: ubuntu-20.04
72-
# python-version: "3.10"
71+
# python-version: "3.11"
7372
# driver: mysql
7473
# pure-python: 0
7574
# buffered: 0
7675
- os: macos-latest
77-
python-version: "3.10"
76+
python-version: "3.11"
7877
driver: mysql
7978
pure-python: 0
8079
buffered: 1
8180
- os: macos-latest
82-
python-version: "3.10"
81+
python-version: "3.11"
8382
driver: https
8483
pure-python: 0
8584
buffered: 1
8685
- os: windows-latest
87-
python-version: "3.10"
86+
python-version: "3.11"
8887
driver: mysql
8988
pure-python: 0
9089
buffered: 1
9190
- os: windows-latest
92-
python-version: "3.10"
91+
python-version: "3.11"
9392
driver: https
9493
pure-python: 0
9594
buffered: 1

docs/src/whatsnew.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ This document outlines features and improvements from each release.
88
are for non-production testing and evaluation, and may include
99
changes to the API.
1010

11+
v0.8.0 - July, 12, 2023
12+
-----------------------
13+
* ! Python 3.8 is now the minimum required version
14+
* Add parameter conversion routines to HTTP driver
15+
1116
v0.7.1 - June 15, 2023
1217
----------------------
1318
* Add ``connect_timeout`` and ``multi_statements`` options to connection

setup.cfg

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = singlestoredb
3-
version = 0.7.1
3+
version = 0.8.0
44
description = Interface to the SingleStore database and cluster management APIs
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -15,8 +15,6 @@ classifiers =
1515
License :: OSI Approved :: Apache Software License
1616
Programming Language :: Python :: 3
1717
Programming Language :: Python :: 3 :: Only
18-
Programming Language :: Python :: 3.6
19-
Programming Language :: Python :: 3.7
2018
Programming Language :: Python :: 3.8
2119
Programming Language :: Python :: 3.9
2220
Programming Language :: Python :: 3.10
@@ -30,7 +28,7 @@ install_requires =
3028
requests
3129
sqlparams
3230
wheel
33-
python_requires = >=3.6
31+
python_requires = >=3.8
3432
tests_require =
3533
coverage
3634
pytest

singlestoredb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
"""
1515

16-
__version__ = '0.7.1'
16+
__version__ = '0.8.0'
1717

1818
from .config import options, get_option, set_option, describe_option
1919
from .connection import connect, apilevel, threadsafety, paramstyle

0 commit comments

Comments
 (0)