Waylan Limberg
Waylan Limberg
Okay, i understand your problem now, but I'm curious what errors you are getting as we use the [webbrowser](https://docs.python.org/2/library/webbrowser.html) package which should be catching any `OSError`. What happens if you...
Yes, I had intended to do so, but there were a few obvious problems with it that needed fixed first. Unfortunately, I was busy with other matters and lost track...
I just checked and the `Foobar-3.1.tar.gz` source distribution I built at the same time does not contain any `.DS_Store` files (and none are listed in the `SOURCES.txt` file). The inclusion...
So I have a `makefile` which defines a `deploy` command with the following: ```makefile .PHONY : deploy deploy: rm -rf dist python setup.py bdist_wheel sdist --formats gztar twine upload dist/*...
It seems that the `build` dir was the problem. No matter what I did, every build included a `.DS_Store` file until I deleted the `build` dir. Once I did that,...
I was curious how this plugin worked and see that your reference store is of the format `dict[str, str]`. However, Python Markdown's store is of the format `dict[str, tuple[str, str]]`...