File tree 4 files changed +18
-4
lines changed
4 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ build: false
2
2
3
3
environment :
4
4
matrix :
5
- - PYTHON_VERSION : 3.9
5
+ - PYTHON_VERSION : 3.7
6
6
MINICONDA : C:\Miniconda3
7
7
8
8
init :
Original file line number Diff line number Diff line change 24
24
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
25
25
#
26
26
27
- __version__ = "0.4.0 "
27
+ __version__ = "0.4.1 "
28
28
__author__ = "Sebastian Raschka <[email protected] >"
Original file line number Diff line number Diff line change @@ -366,7 +366,8 @@ def _parse_header_code(self):
366
366
header = self .df ["OTHERS" ][self .df ["OTHERS" ]["record_name" ] == "HEADER" ]
367
367
if not header .empty :
368
368
header = header ["entry" ].values [0 ]
369
- if s := header .split ():
369
+ s = header .split ()
370
+ if s :
370
371
code = s [- 1 ].lower ()
371
372
return header , code
372
373
Original file line number Diff line number Diff line change @@ -4,6 +4,19 @@ The CHANGELOG for the current development version is available at
4
4
[ https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md ] ( https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md ) .
5
5
6
6
7
+
8
+ ### 0.4.1 (05-13-2022)
9
+
10
+ ##### Downloads
11
+
12
+ - [ Source code (zip)] ( https://github.com/rasbt/biopandas/archive/v0.4.1.zip )
13
+ - [ Source code (tar.gz)] ( https://github.com/rasbt/biopandas/archive/v0.4.1.tar.gz )
14
+
15
+ ##### Changes
16
+
17
+ - Remove walrus operator for Python 3.7 compatibility.
18
+
19
+
7
20
### 0.4.0 (05-11-2022)
8
21
9
22
##### Downloads
@@ -307,4 +320,4 @@ The CHANGELOG for the current development version is available at
307
320
308
321
### 0.1.2 (2015-11-23)
309
322
310
- - First Release.
323
+ - First Release.
You can’t perform that action at this time.
0 commit comments