Michael Wayne Goodman

Results 199 comments of Michael Wayne Goodman

> @alvations any chance we can get a new release on PyPI? It only needs to be the current code on GitHub plus a new version (also see https://github.com/alvations/pywsd/issues/64; the...

I have the same symptom but a different package structure. I have my version specified in a `_meta.py` file under the main package, and the top `__init__.py` imports the version:...

> ...does it work if you use a relative import (`from ._meta import __version__`) rather than an absolute one? Yes, that does seem to help when installing with `pip`. I...

@smidm good point. Being able to specify a location for all the metadata that is expected to be in the top `__init__.py` would also help with projects where the main...

Just got bit by this and found my way here. The fix was simple enough: just `flit install` before `flit publish` (see https://github.com/goodmami/wn/commit/d09031fda6097c17ad97417aa2fb259ac8fab580) The linked issue https://github.com/flying-sheep/get_version/issues/8 helped me see...

@flying-sheep this hack only reaffirms my statement above about people acting rationally :wink: Here I agree with something @takluyver said in #257: > [...] the sort of solutions people have...

@flying-sheep no offense intended; I guess the winking-face emoji wasn't enough to overcome the inherent coldness of text. To be more serious, your hack is indeed clever but I'm afraid...

> any module next to or below `__init__.py` will not be importable without that 3rd party package installed There are ways of importing the module without going through the top-level...