-
Notifications
You must be signed in to change notification settings - Fork 25
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
setup_requires causes alot of problems #102
Comments
Fixes: #102 Signed-off-by: Lukas Bednar <[email protected]>
That change breaks |
I took a look around for some other semantic versioning tools. For example I am open to ideas. |
Hi Lukas, why dont you just use the semver package and create a simple release script that bumps the version of the project based on that? for instance: release.py --bump major/minor/patch and a version.py is generated and you import this file in your setup.py and read the version and specify this to the version in setup call? It does not have to be more complicated than that. Let me know if you want me to provide you with more guidance and thanks in advance for considering to move away from pbr. |
I am sorry for delay, but I was off in past days. Thanks for suggestion ... would you mind to draft some PR? So we can do a review and if it works I am good with getting that in. |
Kindly use the install_requires instead of setup_requires so the dependencies are handled by pip instead of easy install. This causes a lot of problem if you are behind company proxies and creates more maintenance with more configuration files.
is this something you could look into or do I need to fork this?
The text was updated successfully, but these errors were encountered: