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

redirect install of python pkg to PyPI #98

Closed
Tracked by #87
2bndy5 opened this issue Sep 4, 2022 · 0 comments · Fixed by #99
Closed
Tracked by #87

redirect install of python pkg to PyPI #98

2bndy5 opened this issue Sep 4, 2022 · 0 comments · Fixed by #99
Labels
enhancement New feature or request

Comments

@2bndy5
Copy link
Collaborator

2bndy5 commented Sep 4, 2022

Apparently, showing a warning during install of a python pkg is not a thing you can actually do when using pip install (oops).
Instead of adding a warning to the pip output, I can remove all python srcs from master and re-write the setup.py (on master) to redirect installation to the newer package on PyPI.

from setuptools import setup

setuptools.setup(
    name="cpp-linter-deprecated",
    version="0.0.0",
    install_requires=["cpp-linter"],
    py_modules=[""],
)

Originally posted by @2bndy5 in #87 (comment)

This will also avoid errors like the one reported in #94

@2bndy5 2bndy5 added the enhancement New feature or request label Sep 4, 2022
2bndy5 added a commit that referenced this issue Sep 4, 2022
@2bndy5 2bndy5 linked a pull request Sep 4, 2022 that will close this issue
2bndy5 added a commit that referenced this issue Sep 5, 2022
@2bndy5 2bndy5 closed this as completed Sep 5, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant