Compare commits

..

1 commit

Author SHA1 Message Date
46503ac416
Do not display deactivated users when their balance is really small
Cases has been reported of rounding issues making deactivated users
reapparing. This is due to the fact we're using floats (see #528 for
details)

Fixes #1336
2024-12-27 23:59:40 +01:00
3 changed files with 4 additions and 8 deletions

View file

@ -2,9 +2,9 @@ name: CI
on: on:
push: push:
branches: [ 'main', 'stable-*' ] branches: [ 'master', 'stable-*' ]
pull_request: pull_request:
branches: [ 'main', 'stable-*' ] branches: [ 'master', 'stable-*' ]
jobs: jobs:
lint: lint:

View file

@ -3,9 +3,9 @@ name: Docker build
on: on:
push: push:
tags: ['*'] tags: ['*']
branches: [ 'main', 'stable-*' ] branches: [ 'master', 'stable-*' ]
pull_request: pull_request:
branches: [ 'main', 'stable-*' ] branches: [ 'master', 'stable-*' ]
jobs: jobs:

View file

@ -5,10 +5,6 @@ This document describes changes between each past release.
## 6.2.0 (unreleased) ## 6.2.0 (unreleased)
- Add support for python 3.12 (#757) - 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 - Remove support for python 3.7
- Replace the black linter by ruff - Replace the black linter by ruff
- Replace virtualenv and pip by uv - Replace virtualenv and pip by uv