mirror of
https://github.com/dbcli/pgcli.git
synced 2024-11-23 20:26:31 +03:00
Drop Python3.5. (#1154)
* Drop Python3.5. * delete 3.5 from setup.py * fix black format. Using python3.7 for development now. * black target to py36
This commit is contained in:
parent
fd77549754
commit
bc7a5d0100
@ -5,7 +5,6 @@ sudo: required
|
||||
language: python
|
||||
|
||||
python:
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
- "3.7"
|
||||
|
||||
|
@ -17,6 +17,7 @@ Internal:
|
||||
|
||||
* Drop Python3.4 support. (Thanks: `laixintao`_)
|
||||
* Drop Python2.7 support. (Thanks: `laixintao`_)
|
||||
* Drop Python3.5 support. (Thanks: `laixintao`_)
|
||||
* Fix dead link in development guide. (Thanks: `BrownShibaDog`_)
|
||||
|
||||
|
||||
|
@ -201,7 +201,7 @@ class PGExecute(object):
|
||||
host=None,
|
||||
port=None,
|
||||
dsn=None,
|
||||
**kwargs
|
||||
**kwargs,
|
||||
):
|
||||
self._conn_params = {}
|
||||
self.conn = None
|
||||
@ -227,7 +227,7 @@ class PGExecute(object):
|
||||
host=None,
|
||||
port=None,
|
||||
dsn=None,
|
||||
**kwargs
|
||||
**kwargs,
|
||||
):
|
||||
|
||||
conn_params = self._conn_params.copy()
|
||||
|
@ -1,6 +1,6 @@
|
||||
[tool.black]
|
||||
line-length = 88
|
||||
target-version = ['py35']
|
||||
target-version = ['py36']
|
||||
include = '\.pyi?$'
|
||||
exclude = '''
|
||||
/(
|
||||
|
1
setup.py
1
setup.py
@ -48,7 +48,6 @@ setup(
|
||||
"Operating System :: Unix",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: SQL",
|
||||
|
Loading…
Reference in New Issue
Block a user