Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FROM python:3
FROM python:3.8

RUN mkdir /srv/backtab/
#RUN apt-get -y update && apt-get install git mercurial
WORKDIR /usr/src/app

COPY requirements.txt ./
Expand All @@ -22,4 +21,4 @@ RUN echo github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK
RUN git config --global user.name "Backtab server" && git config --global user.email "backtab@example.com"

CMD ["/bin/bash", "/docker-startup.sh"]
EXPOSE 4903
EXPOSE 4903
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ backtab to use a ssh:// url; if so, add your SSH private key to

Running natively
----------------
**NOTE:**
Backtab is currently not compatible with Python 3.9 or later. Please use Python 3.8.

Check out a copy of your data repository wherever you find convenient.
We'll call that location `/srv/backtab/tab-data`.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-e hg+https://bitbucket.org/blais/beancount#egg=beancount
beancount >= 2, < 3
bottle >= 0.12, < 0.13
PyYAML >= 3.13, <4
click >= 7.0, <8
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
"bottle >= 0.12, <0.13",
"PyYAML >= 3.13, <4",
"sdnotify >= 0.3.1, <0.4",
"beancount",
],
dependency_links=[
"hg+https://bitbucket.org/blais/beancount#egg=beancount",
"beancount >= 2, < 3",
],
)