1
0
Fork 0

Drop python 3.7 and add 3.12.

This commit is contained in:
Irina Truong 2023-10-06 20:07:16 -07:00
parent 24436bd640
commit ef274646f0
4 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
services:
postgres:

View File

@ -1,6 +1,6 @@
[tool.black]
line-length = 88
target-version = ['py37']
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(

View File

@ -51,7 +51,7 @@ setup(
"keyring": ["keyring >= 12.2.0"],
"sshtunnel": ["sshtunnel >= 0.4.0"],
},
python_requires=">=3.7",
python_requires=">=3.8",
entry_points="""
[console_scripts]
pgcli=pgcli.main:cli
@ -62,11 +62,11 @@ setup(
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: SQL",
"Topic :: Database",
"Topic :: Database :: Front-Ends",

View File

@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311
envlist = py38, py39, py310, py311, py312
[testenv]
deps = pytest>=2.7.0,<=3.0.7
mock>=1.0.1