File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 5.1.2] - 2024-07-02
9
+
10
+ ### Fixed
11
+
12
+ - An issue with the last fix where, if the build root is a relative path, we'll
13
+ end up getting an exception because we can't find how one path is relative to 7
14
+ another if one of them is absolute and the other is relative.
15
+
8
16
9
17
## [ 5.1.1] - 2024-06-28
10
18
Original file line number Diff line number Diff line change 1
- __version__ = '5.1.1 '
1
+ __version__ = '5.1.2 '
Original file line number Diff line number Diff line change @@ -389,8 +389,9 @@ def add_everything(self):
389
389
line_buffer = []
390
390
391
391
broot = pathlib .Path (self .build_root ).absolute ()
392
+ bpath = pathlib .Path (self .build_path ).absolute ()
392
393
393
- for (dirpath , dirnames , filenames ) in os .walk (self . build_path ):
394
+ for (dirpath , dirnames , filenames ) in os .walk (bpath ):
394
395
for f in filenames :
395
396
if f .endswith ('.py' ) and not f .endswith ('__.py' ):
396
397
fpath = pathlib .Path (dirpath ) / f
You can’t perform that action at this time.
0 commit comments