Skip to content

Commit

Permalink
Merge pull request #38 from wharton/patch/pin-sqlalchemy-version-202302
Browse files Browse the repository at this point in the history
Pin SQLAlchemy Package to <v2.0.0
Needed at least until Pandas is updated to handle SQLAlchemy 2
  • Loading branch information
amalek215 authored Feb 15, 2023
2 parents c4e2ba0 + 6ac315b commit 880f0fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "wrds"
version = "3.1.2"
version = "3.1.3"
description = "Python access to WRDS Data"
authors = [
{name="Eric Stein", email="[email protected]"},
Expand Down Expand Up @@ -44,4 +44,4 @@ SQLAlchemy = "~1.4"
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
requires = [
'numpy',
'pandas',
'sqlalchemy',
'sqlalchemy<2.0.0',
'psycopg2-binary',
# mock may need to be included if folks
# want to run tests w/Py2
Expand All @@ -26,7 +26,7 @@

setup(
name='wrds',
version='3.1.2',
version='3.1.3',
description="Python access to WRDS Data",
long_description=open('README.rst').read(),
author='WRDS',
Expand Down
2 changes: 1 addition & 1 deletion wrds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"""

__title__ = 'wrds-py'
__version__ = '3.1.2'
__version__ = '3.1.3'
__author__ = 'Wharton Research Data Services'
__copyright__ = '2017-2021 Wharton Research Data Services'

Expand Down

0 comments on commit 880f0fc

Please sign in to comment.