Skip to content
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

[WIP] unpin propka to 3.1+ #68

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion devtools/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ dependencies:
- codecov
- pip
- pip:
- propka==3.1
- propka==3.2
2 changes: 1 addition & 1 deletion propkatraj/propkatraj.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _single_frame(self):
# extract pka estimates from each residue
self._pkas.append([g.pka_value for g in groups])
if self._columns is None:
self._columns = [g.atom.resNumb for g in groups]
self._columns = [g.atom.res_num for g in groups]
finally:
# deallocate stream
pstream.close(force=True)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ dependencies = [
"MDAnalysis>=2.1.0",
"numpy",
"pandas",
"propka==3.1",
"propka>=3.2",
]
keywords = [
"molecular simulations",
Expand Down
Loading