From: Jakob Cornell Date: Fri, 5 Nov 2021 06:10:06 +0000 (-0500) Subject: Drop minimum supported Python to 3.7 and switch to `psycopg2-binary' X-Git-Url: https://jcornell.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=9b42754617acff790c236656028a050293b3017c;p=eros.git Drop minimum supported Python to 3.7 and switch to `psycopg2-binary' --- diff --git a/setup.cfg b/setup.cfg index 32846fc..3fc8d70 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,5 +6,6 @@ version = 0.0.1 package_dir = = src packages = disk_jumble +python_requires ~= "3.7" install_requires = - psycopg2 ~= 2.8 + psycopg2-binary ~= 2.8 diff --git a/src/disk_jumble/verify.py b/src/disk_jumble/verify.py index 797962a..34bc6eb 100644 --- a/src/disk_jumble/verify.py +++ b/src/disk_jumble/verify.py @@ -1,3 +1,4 @@ +from __future__ import annotations from dataclasses import dataclass from typing import Optional import argparse