aboutsummaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2019-05-12 19:18:28 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2019-05-12 19:18:28 +0200
commitb86a25e933a59594237c19f0739079a179f4497e (patch)
treecd4e4dbf6695274eb433b0a9fbe411ab952f5411 /Pipfile
parentUses getboolean instead of get in conf.py (diff)
downloadnewspipe-b86a25e933a59594237c19f0739079a179f4497e.tar.gz
newspipe-b86a25e933a59594237c19f0739079a179f4497e.tar.bz2
newspipe-b86a25e933a59594237c19f0739079a179f4497e.zip
Now using psycopg2-binary instead of using psycopg.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Pipfile b/Pipfile
index 0cf31991..8d4b31c4 100644
--- a/Pipfile
+++ b/Pipfile
@@ -1,5 +1,4 @@
[[source]]
-
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
@@ -8,7 +7,6 @@ name = "pypi"
python_version = "3.7"
[packages]
-
aiohttp = "*"
requests = "*"
chardet = "*"
@@ -17,7 +15,6 @@ feedparser = "*"
"beautifulsoup4" = "*"
lxml = "*"
opml = "*"
-"psycopg2" = "*"
SQLAlchemy = "*"
alembic = "*"
Flask = "*"
@@ -35,7 +32,6 @@ Flask-Script = "*"
WTForms = "*"
sendgrid = "*"
python-dateutil = "*"
-
+psycopg2-binary = "*"
[dev-packages]
-
bgstack15