Skip to content

Commit 7240955

Browse files
committed
removed postgres, but not postgresql, support
1 parent e1ed957 commit 7240955

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616
package_dir={"": "src"},
1717
packages=["cs50"],
1818
url="https://github.com/cs50/python-cs50",
19-
version="7.1.0"
19+
version="8.0.0"
2020
)

tests/sql.py

-4
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,6 @@ def setUp(self):
169169
def test_cte(self):
170170
self.assertEqual(self.db.execute("WITH foo AS ( SELECT 1 AS bar ) SELECT bar FROM foo"), [{"bar": 1}])
171171

172-
def test_postgres_scheme(self):
173-
db = SQL("postgres://postgres:[email protected]/test")
174-
db.execute("SELECT 1")
175-
176172

177173
class SQLiteTests(SQLTests):
178174

0 commit comments

Comments
 (0)