Skip to content

Commit

Permalink
Upgarde for beancount3/beangulp fixes #135
Browse files Browse the repository at this point in the history
  • Loading branch information
tarioch committed Dec 27, 2024
1 parent fa72974 commit 26e98ae
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
exclude: '^docs/conf.py'

repos:
- repo: git://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: check-added-large-files
Expand All @@ -18,18 +18,18 @@ repos:
args: ['--fix=auto']

- repo: https://github.com/pycqa/isort
rev: 5.9.3
rev: 5.13.2
hooks:
- id: isort

- repo: https://github.com/psf/black
rev: 21.8b0
rev: 24.4.2
hooks:
- id: black
language_version: python3

- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
- repo: https://github.com/PyCQA/flake8
rev: 7.1.0
hooks:
- id: flake8

Expand Down
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
Changelog
=========
v0.6 (2024-12-27)
-----------------

Upgrade to beancount 3 and beangulp.


v0.3 (2021-02-20)
-----------------
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@ packages = find:
setup_requires =
setuptools_scm
install_requires =
beancount>=2.0.0
beancount>=3
scikit-learn>=0.19
numpy>=1.8.2
scipy>=0.13.3
beangulp

[options.packages.find]
exclude =
Expand Down
3 changes: 2 additions & 1 deletion smart_importer/detector.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"""Duplicate detector hook."""

import logging

from beancount.ingest import similar
from beangulp import similar

from smart_importer.hooks import ImporterHook

Expand Down

0 comments on commit 26e98ae

Please sign in to comment.