mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-05-16 01:11:49 +02:00
Compare commits
2 commits
8791cc856a
...
2bb1e61f8a
Author | SHA1 | Date | |
---|---|---|---|
2bb1e61f8a | |||
2e8ccf9c2e |
5 changed files with 6 additions and 8 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -2,9 +2,9 @@ name: CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
pull_request:
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
|
|
4
.github/workflows/dockerhub.yml
vendored
4
.github/workflows/dockerhub.yml
vendored
|
@ -3,9 +3,9 @@ name: Docker build
|
|||
on:
|
||||
push:
|
||||
tags: ['*']
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
pull_request:
|
||||
branches: [ 'main', 'stable-*' ]
|
||||
branches: [ 'master', 'stable-*' ]
|
||||
|
||||
|
||||
jobs:
|
||||
|
|
|
@ -6,10 +6,6 @@ This document describes changes between each past release.
|
|||
|
||||
- Remove the support for multiple currencies, [as discussed](https://github.com/spiral-project/ihatemoney/issues/1232#issuecomment-2081517453) in our bugtracker.
|
||||
- Add support for python 3.12 (#757)
|
||||
- Migrate from setup.cfg to pyproject.toml (#1243)
|
||||
- Update to wtforms 3.1 (#1248)
|
||||
- Document [repository rules](https://ihatemoney.readthedocs.io/en/latest/contributing.html#repository-rules) (#1253)
|
||||
- Add "reimbursement" bills and allow to create them directly from the "Settle" page (#1290)
|
||||
- Remove support for python 3.7
|
||||
- Replace the black linter by ruff
|
||||
- Replace virtualenv and pip by uv
|
||||
|
|
|
@ -14,6 +14,7 @@ from wtforms.fields import (
|
|||
BooleanField,
|
||||
DateField,
|
||||
DecimalField,
|
||||
Label,
|
||||
PasswordField,
|
||||
SelectField,
|
||||
SelectMultipleField,
|
||||
|
|
|
@ -9,6 +9,7 @@ from flask_babel import Babel
|
|||
from flask_mail import Mail
|
||||
from flask_migrate import Migrate, stamp, upgrade
|
||||
from flask_talisman import Talisman
|
||||
from jinja2 import pass_context
|
||||
from markupsafe import Markup
|
||||
import pytz
|
||||
from werkzeug.middleware.proxy_fix import ProxyFix
|
||||
|
|
Loading…
Reference in a new issue