Skip to content

Commit 10fa97f

Browse files
committed
update pyproject.toml
1 parent e43f978 commit 10fa97f

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

dj_db_conn_pool/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.2.5'
1+
__version__ = '1.2.6'
22
__author__ = 'Altair Bow'
33
__author_email__ = '[email protected]'
44
__description__ = 'Persistent database connection backends for Django'

pyproject.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ classifiers = [
1515
"Programming Language :: Python :: 3",
1616
"Topic :: Software Development :: Libraries :: Python Modules",
1717
]
18-
requires-python = ">=3.4"
18+
requires-python = ">=3.0"
1919
dependencies = [
20-
"Django>=2.0",
21-
"SQLAlchemy>=1.4.24",
22-
"sqlparams>=4.0.0",
20+
"Django",
21+
"SQLAlchemy",
22+
"sqlparams",
2323
]
2424
dynamic = ["version"]
2525

@@ -29,23 +29,23 @@ repository = "https://github.com/altairbow/django-db-connection-pool"
2929

3030
[project.optional-dependencies]
3131
all = [
32-
"Django>=2.0",
33-
"JPype1>=1.3.0",
34-
"SQLAlchemy>=1.4.24",
35-
"cx-Oracle>=6.4.1",
36-
"mysqlclient>=1.3.0",
37-
"psycopg2>=2.8.6",
38-
"pyodbc>=4.0.34",
39-
"sqlparams>=3.0.0",
32+
"Django",
33+
"SQLAlchemy",
34+
"sqlparams",
35+
"psycopg",
36+
"mysqlclient",
37+
"oracledb",
38+
"pyodbc",
39+
"JPype1",
4040
]
4141

42-
jdbc = ["JPype1>=1.3.0"]
43-
mysql = ["mysqlclient>=1.3.0"]
44-
odbc = ["pyodbc>=4.0.34"]
45-
oracle = ["cx-Oracle>=6.4.1"]
46-
postgresql = ["psycopg2>=2.8.6"]
47-
psycopg2 = ["psycopg2>=2.8.6"]
48-
psycopg3 = ["psycopg>=3"]
42+
postgresql = ["psycopg"]
43+
psycopg2 = ["psycopg2"]
44+
psycopg3 = ["psycopg"]
45+
mysql = ["mysqlclient"]
46+
oracle = ["oracledb"]
47+
odbc = ["pyodbc"]
48+
jdbc = ["JPype1"]
4949

5050
[build-system]
5151
requires = ["setuptools"]

0 commit comments

Comments
 (0)