Skip to content

Commit ce993e0

Browse files
committed
update version to 0.0.3
1 parent 685513c commit ce993e0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

mypy.ini

+4
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,9 @@ follow_imports = skip
66
ignore_errors = True
77
disable_error_code = syntax
88

9+
[mypy-rdkit.*]
10+
ignore_errors = True
11+
disable_error_code = syntax
12+
913
[mypy-rxn_insight.*]
1014
disable_error_code = assignment,import,operator,var-annotated,no-untyped-def,arg-type,union-attr,call-arg,attr-defined, return, return-value

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ no_implicit_reexport = true
105105
module = ["rxn_insight.*", "rdkit-stubs.*", "rdkit.*"]
106106
disallow_untyped_defs = true
107107
ignore_missing_imports = true
108-
disable_error_code = ["assignment", "import-untyped", "no-any-return"]
108+
ignore_errors = true
109+
disable_error_code = ["assignment", "import-untyped", "no-any-return", "syntax"]
109110

110111
# Ignore certain missing imports
111112
# [[tool.mypy.overrides]]

src/rxn_insight/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Package version."""
22

3-
__version__ = "0.0.2"
3+
__version__ = "0.0.3"

0 commit comments

Comments
 (0)