We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1ed957 commit 7240955Copy full SHA for 7240955
setup.py
@@ -16,5 +16,5 @@
16
package_dir={"": "src"},
17
packages=["cs50"],
18
url="https://github.com/cs50/python-cs50",
19
- version="7.1.0"
+ version="8.0.0"
20
)
tests/sql.py
@@ -169,10 +169,6 @@ def setUp(self):
169
def test_cte(self):
170
self.assertEqual(self.db.execute("WITH foo AS ( SELECT 1 AS bar ) SELECT bar FROM foo"), [{"bar": 1}])
171
172
- def test_postgres_scheme(self):
173
- db = SQL("postgres://postgres:[email protected]/test")
174
- db.execute("SELECT 1")
175
-
176
177
class SQLiteTests(SQLTests):
178
0 commit comments