1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
9f19297790 🤖 Bumped version to 0.1.20
Some checks failed
Package Python / Package (push) Successful in 25s
Python Ruff Code Quality / ruff (push) Failing after 22s
Run Python tests (through Pytest) / Test (push) Successful in 31s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 28s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-12-02 18:24:31 +01:00
ffd283448b 🤖 Repository layout updated to latest version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/repo-manager
2024-12-02 18:24:01 +01:00
3 changed files with 32 additions and 18 deletions

View File

@ -101,14 +101,20 @@ most mature on the danish market, and does support KuCoin.
## TODO
- [ ] Present an overview of what the script will be doing
* Sell what for what? How much, how often?
* Give an estimate of how long it will take.
* Wait 20 seconds before starting, to allow the user to review.
- [ ] Ensure that a failure during selling results in a safe winding down of the system.
* Catch runtime errors when selling
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Allow multiple secrets configs
- [X] Allow multiple output directories
- [X] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might
require implementing own kucoin backend in `fin_depo`.
- [X] Ensure that a failure during selling results in a safe winding down of the system.
* Catch runtime errors when selling
* Show status
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Present an overview of what the script will be doing
* Sell what for what? How much, how often?
* Give an estimate of how long it will take.
* Wait 20 seconds before starting, to allow the user to review.
- [X] Document command-line arguments
- [X] Document configuration
- [X] Document code auditing
- [X] Parse configuration from json.

View File

@ -1 +1 @@
__version__ = '0.1.19'
__version__ = '0.1.20'

View File

@ -108,14 +108,20 @@ most mature on the danish market, and does support KuCoin.
## TODO
- [ ] Present an overview of what the script will be doing
* Sell what for what? How much, how often?
* Give an estimate of how long it will take.
* Wait 20 seconds before starting, to allow the user to review.
- [ ] Ensure that a failure during selling results in a safe winding down of the system.
* Catch runtime errors when selling
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Allow multiple secrets configs
- [X] Allow multiple output directories
- [X] Fix `TimeoutError` issue occuring from slow Kucoin endpoint. Might
require implementing own kucoin backend in `fin_depo`.
- [X] Ensure that a failure during selling results in a safe winding down of the system.
* Catch runtime errors when selling
* Show status
* Show errors to log.
* Stop loop and exit with results, and error indicator.
- [X] Present an overview of what the script will be doing
* Sell what for what? How much, how often?
* Give an estimate of how long it will take.
* Wait 20 seconds before starting, to allow the user to review.
- [X] Document command-line arguments
- [X] Document configuration
- [X] Document code auditing
- [X] Parse configuration from json.
@ -146,7 +152,9 @@ REQUIREMENTS_MAIN = [
'fin_defs @ git+https://gitfub.space/Jmaa/fin-defs.git',
'fin_depo @ git+https://gitfub.space/Jmaa/fin-depo.git',
]
REQUIREMENTS_TEST = []
REQUIREMENTS_TEST = [
'pytest',
]
setup(