Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix setup.py for newer python versions #172

Open
darix opened this issue Aug 10, 2024 · 0 comments
Open

Fix setup.py for newer python versions #172

darix opened this issue Aug 10, 2024 · 0 comments

Comments

@darix
Copy link

darix commented Aug 10, 2024

Index: pg_chameleon-2.0.19/setup.py
===================================================================
--- pg_chameleon-2.0.19.orig/setup.py
+++ pg_chameleon-2.0.19/setup.py
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
-from setuptools import setup, setuptools
+import setuptools 
 
 def readme():
     with open('README.rst') as f:
@@ -8,7 +8,7 @@ def readme():
 
 package_data = {'pg_chameleon': ['configuration/config-example.yml','sql/upgrade/*.sql','sql/drop_schema.sql','sql/create_schema.sql', 'LICENSE.txt']}
 
-setup(
+setuptools.setup(
     name="pg_chameleon",
     version="2.0.19",
     description="MySQL to PostgreSQL replica and migration",


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant