Drachenfels

Results 25 comments of Drachenfels

@brunolnetto you definitely should expand on your comment, I took a careful look at Mixin and does not see how it squares with nested state machine, maybe I am missing...

I am running: - ubuntu 16.04 - virtualenv 15.0.1 I do following: mkvirtualenv yolo -p $(which python3) Then if I do: pip install --no-cache-dir googleapis-common-protos I have exception with NamespacePath...

ups, sorry guys I thought I am typing on googleapis issues board. Please ignore. :-D

@mforbes The issue you have reported here seems to be about this -> https://github.com/pdm-project/pdm/issues/2179, as I understand you define package requirements for python as less than 3.7 but the project...

Similar scenario to this bug I observed with my pyproject: ``` dependencies = [ "pandas~=1.1.0; python_version >= \"3.9\"", # our legacy code "pandas==0.24.2; python_version < \"3.9\"", ] ``` Despite PDM...

> They are separate stages and serve for different purposes. This seems not to be the case with pandas, unless pandas 0.24.2 after downloading runs some additional pre-install steps that...

Would not be marginally cleaner to re-format it to: ``` assert ( some_var == expected_result, f"""expected: {expected_result} actual: {some_var}""" )

I actually can do this. This does not feel like a difficult task (but I looked into the code only briefly - so perhaps there are issues I have not...

My use case is a little bit different, in my case I have docker-compose that is used on production with an external cloud instance to connect to *BUT* in local...

Different hardware (pc) and different software (Ubuntu) and had very same issue, in my case it was cache of poetry that got garbled somehow. I just went to $HOM/.cache/pypoetry found...