From d4c6555d87afd73eaa521b529cd107ebbd5d9a2d Mon Sep 17 00:00:00 2001 From: Amos Amissah <39559758+theonlyamos@users.noreply.github.com> Date: Sun, 8 Sep 2024 21:29:47 +0000 Subject: [PATCH] updated dependency from psycopg2 to prebuilt binary psycopg2-binary --- odbms/cli.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/odbms/cli.py b/odbms/cli.py index d1a3b89..617dbbc 100644 --- a/odbms/cli.py +++ b/odbms/cli.py @@ -3,7 +3,7 @@ Database = None -VERSION = "0.3.5" +VERSION = "0.3.6" def start(args): import code diff --git a/setup.py b/setup.py index ba2e55a..58687f0 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from importlib.metadata import entry_points from setuptools import setup, find_packages -VERSION = '0.3.5' +VERSION = '0.3.6' with open('README.md', 'rt') as file: description = file.read() @@ -17,7 +17,7 @@ long_description_content_type = "text/markdown", include_package_data=True, # install_requires=['python-dotenv','pymongo', 'mysql', 'mysql-connector', 'mysql-connector-python'], - install_requires=['python-dotenv','pymongo', 'psycopg2', 'inflect', 'pydantic', 'pyreadline3'], + install_requires=['python-dotenv','pymongo', 'psycopg2-binary', 'inflect', 'pydantic', 'pyreadline3'], keywords='python3 runit developer serverless architecture docker sqlite mysql mongodb', project_urls={ 'Source': 'https://github.com/theonlyamos/odbms/',