diff --git a/README.md b/README.md index c16c284..0b503ac 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ It is **NOT** a fully working sqlalchemy dialect. In particular, the dialect doe ## Local setup ```sh -python --version; # confirm python >3.9 +python --version; # confirm python >=3.9 python -m venv .venv; # create a virtual env source .venv/bin/activate; pip install --upgrade pip # pip 25.0.1 diff --git a/setup.py b/setup.py index 760d724..60c28c6 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,9 @@ from setuptools import setup -history = open('CHANGES.rst').read().replace('.. :changelog:', '') - setup( name='gx-sqlalchemy-redshift', - version='0.8.19', + version='0.8.20', description='Great Expectations fork of the Amazon Redshift sqlalchemy dialect', - long_description=history, - long_description_content_type='text/x-rst', author='The Great Expectations Team', author_email='team@greatexpectations.io', license="MIT",