Last active
October 12, 2018 20:56
-
-
Save jwodder/273715f59786d5125178381d2bb836ac to your computer and use it in GitHub Desktop.
An MCVE for a bug in tox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[build-system] | |
requires = [ | |
"read_version ~= 0.1.0", | |
"setuptools >= 34.4.0", | |
"wheel" | |
] | |
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from read_version import read_version | |
from setuptools import setup | |
setup( | |
name='tox-bug', | |
version=read_version('tox_bug.py'), | |
py_modules=['tox_bug'], | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tox] | |
envlist = py35,py36,py37 | |
skip_missing_interpreters = True | |
isolated_build = True | |
[testenv] | |
usedevelop = True | |
commands = |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__version__ = '0.1.0' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment