And maybe suggest some workarounds for that. Currently I came up with: 1) Setting env var with no local identifier ```console python -c 'import setuptools_scm; print(setuptools_scm.get_version(local_scheme=lambda v: ""))' | read SETUPTOOLS_SCM_PRETEND_VERSION ``` which is scary because of #321 2) substituting `setuptools_scm.local_scheme` entrypoint with `lambda v: ""` Which should probably be done only when uploading the dist because in all other cases it's still nice to have local identifier. Ref: https://github.com/pypa/twine/issues/430 Ref: https://github.com/pypa/python-packaging-user-guide/issues/578