1
Fork 0

Fix incompatible beancount version

This commit is contained in:
Lucas Schwiderski 2024-08-26 09:56:07 +02:00
parent 010c09f751
commit 9bce4a9834
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8
2 changed files with 4 additions and 1 deletions

View file

@ -21,4 +21,4 @@ EXPOSE 8080
VOLUME ${BEANCOUNT_IMPORT_DATA_DIR} VOLUME ${BEANCOUNT_IMPORT_DATA_DIR}
VOLUME ${BEANCOUNT_IMPORT_JOURNAL_DIR} VOLUME ${BEANCOUNT_IMPORT_JOURNAL_DIR}
CMD python3 /beancount-import/run.py --address 0.0.0.0 --port 8080 ${BEANCOUNT_IMPORT_ARGS} CMD [ "python3", "/beancount-import/run.py", "--address", "0.0.0.0", "--port", "8080", "${BEANCOUNT_IMPORT_ARGS}" ]

View file

@ -1,2 +1,5 @@
# beancount-import doesn't specify this constraint itself, but is also
# not compatible with v3. So we need to ensure this here.
beancount<3.0.0
beancount-import==1.4.0 beancount-import==1.4.0
smart_importer==0.5 smart_importer==0.5