Sergey B Kirpichev
|
70b722800f
|
Use shortest decimal representations for str/repr
Was:
```
$ python -m mpmath
>>> 0.1
0.10000000000000001
```
Now:
```
$ python -m mpmath --shortest-str
>>> 0.1
0.1
```
Closes #1028
|
2026-08-20 12:46:40 +03:00 |
|
Sergey B Kirpichev
|
41243c5438
|
Tune hypothesis settings (max_examples for default/ci profiles)
|
2026-06-17 11:22:37 +03:00 |
|
Sergey B Kirpichev
|
6bc4fe86f3
|
Cleanup conftest.py
|
2026-03-04 07:28:49 +03:00 |
|
Sergey B Kirpichev
|
cd25f9b536
|
Drop deprecated rational module
|
2026-03-04 07:28:49 +03:00 |
|
Sergey B Kirpichev
|
8f3e715b1e
|
Drop deprecated math2 module
|
2026-03-04 07:28:49 +03:00 |
|
Sergey B Kirpichev
|
2fe20a3c83
|
Amend 6c51c9d8 (restore default context's mp.pretty behavior)
|
2025-10-29 09:25:05 +03:00 |
|
Sergey B Kirpichev
|
4582b13795
|
Support rounding property for the mp context
|
2025-06-01 13:28:51 +03:00 |
|
Sergey B Kirpichev
|
a0dd78fd84
|
Ignore few files with DeprecationWarning during tests collection
|
2024-04-16 12:18:03 +03:00 |
|
Sergey B Kirpichev
|
e488fb2bef
|
Add pytest_report_header()
|
2023-04-30 08:53:44 +03:00 |
|
Sergey B Kirpichev
|
31381da358
|
Run CI tests with pytest-xdist
conftest.py moved to enable reset_mp_globals() fixture for doctests
Closes #99
|
2023-04-20 11:23:45 +03:00 |
|