Benedek Racz

Results 35 comments of Benedek Racz

The following task is to tag a commit and upload the package to pypi to be able to install directly with `pip install bscan_tools` Note, that version is generated from...

Hi, Do you plan to accept this improovements, or do I roll back my changes?

`pip install .` is the same than `pip install bscan_tools` if you publish this tool on pypi.org. It will install dependencies and the tool also. After that, you can run...

I have no experience with docker... I have created a sample project to reproduce the issue: https://github.com/raczben/setuptools_i2010 I _cannot_ reproduce under Windows and native Linux. I can reproduce only under...

A workaround is to use `--no-color` switch. However this should be solved, codecov should detect the platform.

I suggest to use [colorama](https://pypi.org/project/colorama/) or [termcolor](https://pypi.org/project/termcolor/) or any other handy tool for colored output, instead of the current, platform specific way.

Why this fix has not been accepted? I have the same: https://stackoverflow.com/q/59934305/2506522

I found in a [matplotlib issue](https://github.com/matplotlib/matplotlib/issues/12337/#issuecomment-425628982): > The hold functionality was deprecated in 2.1, and intentionally removed in 3.0.

For fast fix I suggest to add this restriction into setup.py: Current: ``` extras_require = {'PLOT':['matplotlib>=1.1.1']}, ```` Suggestion: ``` extras_require = {'PLOT':['matplotlib>=1.1.1,

The root-cause is located in the [__init__.py](https://github.com/raczben/ahkab/blob/master/ahkab/__init__.py): The problem occures if the ahakab is run from the non-default python interpreter. Current snippet: ``` try: import matplotlib if os.system('python -c "import...