Merge pull request #228 from Davi0kProgramsThings/v3.0.0b3

Merge branch `Davi0kProgramsThings:v3.0.0b3` into branch `bitfinexcom:master`.
This commit is contained in:
Vigan Abdurrahmani
2023-11-23 14:38:41 +01:00
committed by GitHub
83 changed files with 1758 additions and 1689 deletions

View File

@@ -26,10 +26,5 @@ A possible solution could be...
### Python version
<!-- Indicate your python version here -->
<!-- You can print it using `python3 --version`-->
<!-- You can print it using `python3 --version` -->
Python 3.10.6 x64
### Mypy version
<!-- Indicate your mypy version here -->
<!-- You can print it using `python3 -m mypy --version`-->
mypy 0.991 (compiled: yes)

View File

@@ -25,8 +25,5 @@ PR fixes the following issue:
- [ ] I have commented my code, particularly in hard-to-understand areas;
- [ ] I have made corresponding changes to the documentation;
- [ ] My changes generate no new warnings;
- [ ] I have added tests that prove my fix is effective or that my feature works;
- [ ] New and existing unit tests pass locally with my changes;
- [ ] Mypy returns no errors or warnings when run on the root package;
- [ ] Pylint returns a score of 10.00/10.00 when run on the root package;
- [ ] I have updated the library version and updated the CHANGELOG;

View File

@@ -27,5 +27,3 @@ jobs:
run: python -m pylint bfxapi
- name: Run mypy to check the correctness of type hinting (and fail if any error or warning is found)
run: python -m mypy bfxapi
- name: Execute project's unit tests (unittest)
run: python -m unittest bfxapi.tests