Sergey B Kirpichev

Results 173 issues of Sergey B Kirpichev

See [the build log](https://github.com/diofant/diofant/runs/5402391352?check_suite_focus=true). No workflow changes since last release [v0.13.0](https://github.com/diofant/diofant/releases/tag/v0.13.0): ``` - name: Publish on Github Releases uses: softprops/action-gh-release@v1 if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && matrix.coverage env:...

See [example](https://github.com/diofant/diofant/commit/6d148c980620e3a38deaf628c77ddf22ee48f303/checks?check_suite_id=262214186). This github action doesn't work at all... Seems to be like (closed) https://github.com/softprops/action-gh-release/issues/12. BTW, full yml snippet, that uses your software in my case: ```yml - name: Publish...

Take an example (ideas were installed from the git): ``` $ cat conftest.py from ideas.examples import fractions_ast fractions_ast.add_hook() $ cat test_fractions.py import fractions def test_not_float(): assert isinstance(1/2, fractions.Fraction) $ pytest...

Python do NKFC-normalization while parsing identifiers. That disallow some fancy unicode identifiers like ℕ (it will be N for Python), see e.g. [this](https://github.com/diofant/diofant/issues/827). Other languages, that support unicode identifiers usually...

You can avoid ugly workarounds (like `range()` case), if you wrap only integer divisions with Fraction's, like [Diofant does](https://github.com/diofant/diofant/blob/51fdc18fd9e1fd16905f507a3fbf65d0dbd5c51c/diofant/interactive/session.py#L5-L28).

``` $ cat -n a.py 1 # pylint: disable=missing-class-docstring, missing-module-docstring 2 3 class Foo(type): 4 pass 5 6 7 class Bar(Foo): 8 def __init__(cls): 9 super().__init__() $ flake8 --ignore=D100,D101,D107 a.py...

In some sense, this is a recreation of https://github.com/fredrik-johansson/mpmath/issues/399 (which was closed). But, probably, this is - the right place to discuss the project maintainership, instead of the sympy's maillists...

Last release is 1.1.0, from 2018. I think, it's time to provide another one. It would be great, if the new mpmath will enter to the Debian testing before soft...

@fredrik-johansson, this was broken by #537, see [before](https://travis-ci.org/github/fredrik-johansson/mpmath/jobs/679998558) and [after](https://travis-ci.org/github/fredrik-johansson/mpmath/jobs/689208142). I think, the slow marker definition should be moved to the conftest.py somewhere.

SymPy hasn't supported Python 2 for over a year. I would support dropping it in mpmath, especially if active development is being done on it. _Originally posted by @asmeurer in...