Skip to content

Commit 2e1881f

Browse files
committed
python 3.7 compat
1 parent 9696e33 commit 2e1881f

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

biopandas/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
2525
#
2626

27-
__version__ = "0.3.0"
27+
__version__ = "0.4.1"
2828
__author__ = "Sebastian Raschka <[email protected]>"

docs/CHANGELOG.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,43 @@
33
The CHANGELOG for the current development version is available at
44
[https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md](https://github.com/rasbt/biopandas/blob/main/docs/sources/CHANGELOG.md).
55

6-
### 0.4.0dev1 (TBD)
6+
7+
### 0.4.1 (05-13-2022)
78

89
##### Downloads
910

10-
-
11+
- [Source code (zip)](https://github.com/rasbt/biopandas/archive/v0.4.1.zip)
12+
- [Source code (tar.gz)](https://github.com/rasbt/biopandas/archive/v0.4.1.tar.gz)
13+
14+
15+
16+
##### Changes
17+
18+
- Remove walrus operator for Python 3.7 compatibility.
19+
20+
21+
### 0.4.0 (05-11-2022)
22+
23+
##### Downloads
24+
25+
- [Source code (zip)](https://github.com/rasbt/biopandas/archive/v0.4.0.zip)
26+
- [Source code (tar.gz)](https://github.com/rasbt/biopandas/archive/v0.4.0.tar.gz)
1127

1228
##### New Features
1329

1430
- Adds support for extracting structures from PDB files containing multiple models. See the [documentation](http://rasbt.github.io/biopandas/tutorials/Working_with_PDB_Structures_in_DataFrames/#working-with-pdbs-containing-multiple-models
1531
) for details. (via [Arian Jamasb](https://github.com/a-r-j), PR #[101](https://github.com/rasbt/biopandas/pull/101/files)).
1632

33+
- Adds support for fetching mmCIF (`PandasMmcif().fetch_mmcif(uniprot_id='Q5VSL9', source='alphafold2-v2')`) and PDB structures (e.g., `PandasPdb().fetch_pdb(uniprot_id='Q5VSL9', source="alphafold2-v2")`) (via [Arian Jamasb](https://github.com/a-r-j), PR #[102](https://github.com/rasbt/biopandas/pull/102/files)).
34+
1735
##### Changes
1836

37+
- Instead of raising a warning when no ATOM entries are loaded, raise the warning only when neither ATOM nor HETAM entries are loaded.
38+
1939
##### Bug Fixes
2040

41+
- None
42+
2143
### 0.3.0 (04-06-2022)
2244

2345
##### Downloads
@@ -299,4 +321,4 @@ The CHANGELOG for the current development version is available at
299321

300322
### 0.1.2 (2015-11-23)
301323

302-
- First Release.
324+
- First Release.

0 commit comments

Comments
 (0)