-
Notifications
You must be signed in to change notification settings - Fork 30
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
Packaging version issue with latest release 1.1.0 #14
Comments
Hi! I was not able to reproduce initially: I had However, from a fresh install (
The Will try to |
I believe the issue is caused by 848ea5a, which removed |
I was able to trace it down to this commit: 848ea5a (between 1.0.0 and 1.0.1) On which I get: pip install .
Processing /Users/florimond.manca/Desktop/iniconfig
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... done
Building wheels for collected packages: iniconfig
Building wheel for iniconfig (PEP 517) ... done
Created wheel for iniconfig: filename=iniconfig-0.0.0-py3-none-any.whl size=4214 sha256=1294c1b540bb580162ef535af76e21aaa805924512b203ac14d8c54d2a9ec6bc
Stored in directory: /private/var/folders/cj/rxdv0rzd56706lx_321wjs800000gn/T/pip-ephem-wheel-cache-l5xkw49q/wheels/d3/bf/5d/2d4271ded7e402a7bcd65d83e19a1c585441e87b93ee984898
Successfully built iniconfig
Installing collected packages: iniconfig
Successfully installed iniconfig-0.0.0 On the previous commit 982a6b3, I get pip install .
Processing /Users/florimond.manca/Desktop/iniconfig
Using legacy 'setup.py install' for iniconfig, since package 'wheel' is not installed.
Installing collected packages: iniconfig
Running setup.py install for iniconfig ... done
Successfully installed iniconfig-1.0.1.dev6+g982a6b3 |
Doesn't seem accurate, since the build requirement is now in However the |
Yup, adding $ pip install .
Processing /Users/florimond.manca/Desktop/iniconfig
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... done
Building wheels for collected packages: iniconfig
Building wheel for iniconfig (PEP 517) ... done
Created wheel for iniconfig: filename=iniconfig-1.0.1.dev7+g848ea5a.d20201014-py3-none-any.whl size=4498 sha256=8b829d850afbb7fd68059dcb024ea74e5fe348b4231f1e1624c4d3c4e95f3eff
Stored in directory: /private/var/folders/cj/rxdv0rzd56706lx_321wjs800000gn/T/pip-ephem-wheel-cache-4a7od81k/wheels/d3/bf/5d/2d4271ded7e402a7bcd65d83e19a1c585441e87b93ee984898
Successfully built iniconfig
Installing collected packages: iniconfig
Attempting uninstall: iniconfig
Found existing installation: iniconfig 1.0.1.dev6+g982a6b3
Uninstalling iniconfig-1.0.1.dev6+g982a6b3:
Successfully uninstalled iniconfig-1.0.1.dev6+g982a6b3
Successfully installed iniconfig-1.0.1.dev7+g848ea5a.d20201014 Example patch: index 159e68b..ab298f2 100644
--- a/setup.py
+++ b/setup.py
@@ -14,6 +14,7 @@ def main():
readme = fp.read()
setup(
name='iniconfig',
+ use_scm_version=True,
py_modules=['iniconfig'],
description='iniconfig: brain-dead simple config-ini parsing',
long_description=readme |
I also get fail of builds (on readthedocs)
|
Pinning the version in our requirements works for us as a temporary hotfix. |
Hello,
it looks like that there is an issue with the latest version just released, the version in the package is
0.0.0
.Test:
Are you able to reproduce the same?
The text was updated successfully, but these errors were encountered: