Skip to content

Commit

Permalink
updated dependency from psycopg2 to prebuilt binary psycopg2-binary
Browse files Browse the repository at this point in the history
  • Loading branch information
theonlyamos committed Sep 8, 2024
1 parent 157435c commit d4c6555
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion odbms/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Database = None

VERSION = "0.3.5"
VERSION = "0.3.6"

def start(args):
import code
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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()
Expand All @@ -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/',
Expand Down

0 comments on commit d4c6555

Please sign in to comment.