Skip to content

Commit 3df1c83

Browse files
v0.3.0.0 -> v.0.4.0.0
Signed-off-by: JasonMendoza2008 <lhotteromain@gmail.com>
1 parent d4d7d91 commit 3df1c83

File tree

4 files changed

+32
-14
lines changed

4 files changed

+32
-14
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cff-version: 1.2.0
22
message: "If you use this software, please cite it as below. Lhotte, R., & Taupin, J. (2022). Physicochemical Amino acid
3-
Replacement Distances (PARD) package (Version 0.3.0.0) [Computer software].
3+
Replacement Distances (PARD) package (Version 0.4.0.0) [Computer software].
44
https://doi.org/10.5281/zenodo.7013169"
55
authors:
66
- family-names: Lhotte
@@ -10,7 +10,7 @@ authors:
1010
given-names: Jean-Luc
1111
orcid: https://orcid.org/0000-0002-5766-046X
1212
title: Physicochemical Amino acid Replacement Distances (PARD) package
13-
version: 0.3.0.0
13+
version: 0.4.0.0
1414
doi: 10.5281/zenodo.7013169
1515
link: https://github.com/MICS-Lab/pard
1616
date-released: 2022-08-20

README.md

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -140,32 +140,50 @@ which are the correct values
140140

141141

142142
#### Unit tests details
143+
Coverage
143144
```
144-
---------- coverage: platform win32, python 3.10.2-final-0 -----------
145145
Name Stmts Miss Cover
146146
----------------------------------------------------------------
147147
pard\__init__.py 3 0 100%
148148
pard\_handling_3_letter_code_decorator.py 18 2 89%
149-
pard\_raw_python_dictionaries.py 53 0 100%
149+
pard\_raw_python_dictionaries.py 61 32 48%
150150
pard\epstein.py 7 0 100%
151151
pard\experimental_exchangeability.py 10 0 100%
152152
pard\grantham.py 5 0 100%
153-
pard\koshi_goldstein.py 39 2 95%
153+
pard\koshi_goldstein.py 55 24 56%
154154
pard\miyata.py 5 0 100%
155155
pard\sneath.py 5 0 100%
156156
tests\__init__.py 0 0 100%
157157
tests\test_epstein.py 46 0 100%
158158
tests\test_experimental_exchangeability.py 30 0 100%
159159
tests\test_grantham.py 25 0 100%
160-
tests\test_koshi_goldstein.py 60 0 100%
160+
tests\test_koshi_goldstein.py 108 50 54%
161161
tests\test_miyata.py 25 0 100%
162162
tests\test_pard.py 3 0 100%
163-
tests\test_raw_python_dictionaries.py 24 0 100%
163+
tests\test_raw_python_dictionaries.py 20 11 45%
164164
tests\test_sneath.py 21 0 100%
165-
unit_tests_mypy.py 4 4 0%
166-
unit_tests_simple.py 4 4 0%
165+
unit_tests_mypy.py 5 5 0%
166+
unit_tests_simple.py 5 5 0%
167167
----------------------------------------------------------------
168-
TOTAL 387 12 97%
168+
TOTAL 457 129 72%
169+
```
170+
171+
#### pytest
172+
```
173+
platform win32 -- Python 3.11.1, pytest-7.2.0, pluggy-1.0.0
174+
plugins: anyio-3.6.2, mypy-0.10.3
175+
collected 14 items
176+
177+
tests\test_epstein.py . [ 7%]
178+
tests\test_experimental_exchangeability.py . [ 14%]
179+
tests\test_grantham.py . [ 21%]
180+
tests\test_koshi_goldstein.py ....... [ 71%]
181+
tests\test_miyata.py . [ 78%]
182+
tests\test_pard.py . [ 85%]
183+
tests\test_raw_python_dictionaries.py . [ 92%]
184+
tests\test_sneath.py . [100%]
185+
186+
============================= 14 passed in 0.06s ==============================
169187
```
170188

171189
#### mypy detail
@@ -186,7 +204,7 @@ If you use this software, please cite it as below.
186204

187205
`
188206
Lhotte, R. & Taupin, J. (2022).
189-
Physicochemical Amino acid Replacement Distances (PARD) package (Version 0.3.0.0) [Computer software].
207+
Physicochemical Amino acid Replacement Distances (PARD) package (Version 0.4.0.0) [Computer software].
190208
https://doi.org/10.5281/zenodo.7013169
191209
`
192210

@@ -198,7 +216,7 @@ https://doi.org/10.5281/zenodo.7013169
198216
doi = {10.5281/zenodo.7013169},
199217
month = {8},
200218
title = {{Physicochemical Amino acid Replacement Distances (PARD) package}},
201-
version = {0.3.0.0},
219+
version = {0.4.0.0},
202220
year = {2022}
203221
}
204222
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pard"
3-
version = "0.3.0.0"
3+
version = "0.4.0.0"
44
description = "Physicochemical Amino acid Replacement Distances"
55
authors = ["JasonMendoza2008 <lhotteromain@gmail.com>"]
66
readme = "README.md"

tests/test_pard.py

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

33

44
def test_version() -> None:
5-
assert __version__ == '0.3.0.0'
5+
assert __version__ == '0.4.0.0'

0 commit comments

Comments
 (0)