Skip to content

Commit 5b205fd

Browse files
committed
Fix static checks
1 parent 9385d00 commit 5b205fd

6 files changed

Lines changed: 8 additions & 59 deletions

File tree

.github/workflows/pre-commit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
- "3.9"
1414
- "3.10"
1515
- "3.11"
16-
- "3.12"
1716

1817
steps:
1918
- uses: actions/checkout@v3

.github/workflows/smoke-test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
- "3.9"
4848
- "3.10"
4949
- "3.11"
50-
- "3.12"
5150
driver:
5251
- mysql
5352
- https

.pre-commit-config-py36.yaml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.1.0
3+
rev: v4.4.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
@@ -15,31 +15,31 @@ repos:
1515
- id: double-quote-string-fixer
1616
- id: requirements-txt-fixer
1717
- repo: https://github.com/PyCQA/flake8
18-
rev: 5.0.4
18+
rev: 6.0.0
1919
hooks:
2020
- id: flake8
2121
exclude: singlestoredb/clients/pymysqlsv/
2222
additional_dependencies: [flake8-typing-imports==1.12.0]
2323
- repo: https://github.com/pre-commit/mirrors-autopep8
24-
rev: v1.6.0
24+
rev: v2.0.2
2525
hooks:
2626
- id: autopep8
2727
- repo: https://github.com/asottile/reorder_python_imports
28-
rev: v2.6.0
28+
rev: v3.10.0
2929
hooks:
3030
- id: reorder-python-imports
3131
args: [--py36-plus]
3232
- repo: https://github.com/asottile/add-trailing-comma
33-
rev: v2.2.1
33+
rev: v3.0.0
3434
hooks:
3535
- id: add-trailing-comma
3636
args: [--py36-plus]
3737
- repo: https://github.com/asottile/setup-cfg-fmt
38-
rev: v1.20.0
38+
rev: v2.4.0
3939
hooks:
4040
- id: setup-cfg-fmt
4141
- repo: https://github.com/pre-commit/mirrors-mypy
42-
rev: v1.3.0
42+
rev: v1.4.1
4343
hooks:
4444
- id: mypy
4545
additional_dependencies: [types-all]

docs/src/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@
9090
html_static_path = ['_static']
9191

9292
pygments_style = 'monokai'
93-
#pygments_dark_style = 'monokai'
93+
# pygments_dark_style = 'monokai'

setup.cfg

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,12 @@ url = https://github.com/singlestore-labs/singlestoredb-python
88
author = SingleStore
99
author_email = support@singlestore.com
1010
license = Apache-2.0
11-
license_file = LICENSE
1211
license_files = LICENSE
1312
classifiers =
1413
Development Status :: 4 - Beta
1514
License :: OSI Approved :: Apache Software License
1615
Programming Language :: Python :: 3
1716
Programming Language :: Python :: 3 :: Only
18-
Programming Language :: Python :: 3.8
19-
Programming Language :: Python :: 3.9
20-
Programming Language :: Python :: 3.10
2117
Topic :: Database
2218

2319
[options]

0 commit comments

Comments
 (0)