vinayak-mehta / present

A terminal-based presentation tool with colors and effects.

Home Page:https://present.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

(Slide 4) BlockQuote is not supported

Lazloo opened this issue · comments

I tried the sample.md. But I got the following error:

grafik

Upgrading to 0.5.1 should solve this.

@ vinayak-mehta: Version 0.5.1. seems not yet to be available using pip on windows

What install commands did you use? If you're using pip, you can try doing python3 -m pip install --upgrade present. What's the output that you get with this command?

interesting:

python3 -m pip install present -> works
pip install present -> installs present 0.4.0

Only python 3 is installed

Maybe this warning helps:

grafik

Yes, I've yanked releases older than 0.5.0 so everyone should see a warning if pip installs older versions.

But why is pip installing an old version?

I forgot to add a python_requires>=3.7 in the setup.py for the old versions, it only got added in 0.5.0. So during the install pip doesn't take your Python version into account and still installs an older present version since it thinks thats compatible. Maybe I should just delete older releases from PyPI, let me look into the consequences of that.