-
Notifications
You must be signed in to change notification settings - Fork 36
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
Not all changed files staged and committed #218
Comments
Thank you for this report. I imagine this is a duplicate of #204. |
It seems very similar. I suppose this issue should just be closed, then? |
Yes, I've closed it. If you can help to figure out how to fix this, I'd greatly appreciate it. |
A quick test indicates that pathlib does not have the same issue as pathlib2 – though I know going to an unsupported package is not a good idea.
I will investigate some more.
|
You could try
try:
import pathlib as pl
except:
import pathlib2 as pl
to ensure compatibility on old versions of python. If that is why you use pathlib2 and not the built-in pathlib.
I will try to make a working example of the issue and raise it with pathlib2.
|
I have created an issue in pathlib2: jazzband/pathlib2#86 |
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have an issue where bumpver doesn't stage and commit all of the changes it has made. As best I can tell, it fails when there is capital letters in a folder name on the path to a file.
Reproduction steps:
bumpver update --patch
Expected results:
All 4 copies of test.txt have updated version, and are included in the tagged commit.
Actual result:
Three copies of test.txt has updated version and are included in the tagged commit.
src\CaPiTaLiZaTiOn\test.txt
has updated version, but is not staged.Environment:
Windows 10 Enterprise, Version 10.0.19044 Build 19044
Python 3.9.4
bumpver version 2023.1125
The text was updated successfully, but these errors were encountered: