Skip to content

Commit 240ae7f

Browse files
authored
Merge pull request #1 from miksyr/v0.2
v0.2 - updated requirements
2 parents 8b3931d + 0d0f8ce commit 240ae7f

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

easy_postgres_engine/postgres_engine.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import logging
2+
23
import pandas as pd
34
import psycopg2
45
import psycopg2.extras

easy_postgres_engine/retry_decorator.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
import logging
2-
31
from functools import wraps
2+
import logging
43
from time import sleep
54

65

easy_postgres_engine/tests/__init__.py

Whitespace-only changes.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pandas==0.25.3
2-
psycopg2-binary==2.8.4
1+
pandas==1.3.2
2+
psycopg2-binary==2.9.1
33
testing.postgresql==1.3.0

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,22 @@
33
setup(
44
name='easy_postgres_engine',
55
packages=['easy_postgres_engine'],
6-
version='0.1',
6+
version='0.2',
77
description='Engine class for easier connections to postgres databases',
88
author='Michael Doran',
99
author_email='mikrdoran@gmail.com',
1010
url='https://github.com/miksyr/easy_postgres_engine',
11-
download_url='https://github.com/miksyr/easy_postgres_engine/archive/v_01.tar.gz',
11+
download_url='https://github.com/miksyr/easy_postgres_engine/archive/v_02.tar.gz',
1212
keywords=['postgreSQL', 'postgres'],
1313
install_requires=[
14-
'pandas==0.25.3',
15-
'psycopg2-binary==2.8.4',
14+
'pandas==1.3.2',
15+
'psycopg2-binary==2.9.1',
1616
'testing.postgresql==1.3.0'
1717
],
1818
classifiers=[
1919
"Programming Language :: Python :: 3",
2020
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2121
"Operating System :: OS Independent",
2222
],
23+
python_requires='>=3.9'
2324
)

0 commit comments

Comments
 (0)