Dror Atariah
Dror Atariah
I guess you also need to add ``` changeps1: False ``` to `.condarc`.
@Gigitsu I had to disable `changeps1` in my `.condarc`...
The first (non colored) part comes from Conda's patching of `$PS1`. At least this is what I understand.
I can confirm that also on another system I had to disable `changeps1`.
Is the `-i` option available or not? In the linked commit it says that this feature was removed.
I'm afraid I won't have the time to contribute/provide the tests. That's a shame; I know.
If I understand correctly, a markdown file is rendered by `commonmarker` as mentioned [here](https://github.com/github/markup#markups). This means, that if math support (LaTeX) is desired, actually there are two options: * Request...
Do you mean https://github.com/github/cmark-gfm as the upstream?
I can also confirm that: * or maybe $z^2$ doesn't work. Probably this requires a new bug report ( #1546 )
NB, Mikhail's suggestion means: ```python X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.2, shuffle=True, random_state=42 ) X_train.reset_index(drop=True).to_pickle("./data/X_train.pkl") y_train.reset_index(drop=True).to_pickle("./data/y_train.pkl") ``` But in this case rest of the index is an...