Skip to content

Commit

Permalink
Fixing numpy and pydantic versions
Browse files Browse the repository at this point in the history
  • Loading branch information
robvadai committed Jul 16, 2024
1 parent ad5ba9d commit 8bc87ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ classifiers = [
]
dependencies = [
"quiffen==2.0.11",
"pydantic==1.10.17"
"pydantic==1.10.17",
"numpy==1.26.4"
]
[project.optional-dependencies]
dev = [
Expand Down
2 changes: 1 addition & 1 deletion src/ofxstatement_qif/plugin.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging
from decimal import Decimal
from typing import Dict, Optional, Iterable, Tuple
from typing import Optional, Iterable, Tuple

from ofxstatement.parser import StatementParser
from ofxstatement.plugin import Plugin
Expand Down

0 comments on commit 8bc87ff

Please sign in to comment.