PythonCoderAS

Results 125 comments of PythonCoderAS

@matteius the thing is that you specified a path from the **root directory**. You have to change the working directory to the subdirectory and then use a relative path from...

Maybe a fallback can be tried where if resolution fails on the root directory it `cd`s to the initial working directory and tries again,

> @matteius Yes, the root directory doesn't contain a `setup.py` and is thus not recognized as a valid local requirement. The requirement parsing is performed after changing root to the...

I was thinking that the error was too cryptic and could be phrased better, such as "Pipenv does not support installing relative paths from subdirectories of projects."

> imo development version should not be emphasised to users. It could contain anything from breaking changes to in development featues. > > Not to mention that using development is...

I think the "No support" line should at least be moved to the earlier box.

> Could you share a MAL profile link which uses the "new modern About Me sections"? https://myanimelist.net/profile/ManWild

I'm just going to install from git to get around this

> Can you update your post with the exact code before autofix and after autofix? > > In particular, `for (int i=0;` is not valid Sorry I wrote it off...

> ```js > const stringData: string[] = ["a", "b", "c"]; > for (let i=0; i const item: string = stringData[i]; > } > ``` After: ```ts const stringData: string[] =...