Skip to content

Commit 464e69a

Browse files
committed
Foldcomp 0.1.0
1 parent d41425e commit 464e69a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/download-artifact@v4
5959
with:
6060
path: dist
61-
61+
merge-multiple: true
6262
- uses: pypa/[email protected]
6363
with:
6464
user: __token__

foldcomp-py-examples.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"outputs": [],
3333
"source": [
3434
"# Installing foldcomp\n",
35-
"%pip install -q \"foldcomp==0.0.7\""
35+
"%pip install -q \"foldcomp==0.1.0\""
3636
]
3737
},
3838
{

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="foldcomp",
5-
version="0.0.8",
5+
version="0.1.0",
66
description="Foldcomp compresses protein structures with torsion angles effectively. It compresses the backbone atoms to 8 bytes and the side chain to additionally 4-5 byes per residue, an averaged-sized protein of 350 residues requires ~4.2kb. Foldcomp is a C++ library with Python bindings.",
77
long_description=open("README.md").read(),
88
long_description_content_type="text/markdown",

src/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* foldcomp compress input.pdb output.fcz
1414
* foldcomp decompress input.fcz output.pdb
1515
* ---
16-
* Last Modified: 2024-08-08 20:54:36
16+
* Last Modified: 2025-07-30 15:44:47
1717
* Modified By: Hyunbin Kim ([email protected])
1818
* ---
1919
* Copyright © 2021 Hyunbin Kim, All rights reserved
@@ -60,7 +60,7 @@ static int ext_use_title = 0;
6060
static int overwrite = 0;
6161

6262
// version
63-
#define FOLDCOMP_VERSION "0.0.8"
63+
#define FOLDCOMP_VERSION "0.1.0"
6464

6565
int print_usage(void) {
6666
std::cout << "Usage: foldcomp compress <pdb|cif> [<fcz>]" << std::endl;

0 commit comments

Comments
 (0)