Skip to content

Instantly share code, notes, and snippets.

@jwodder
Last active October 12, 2018 20:56
Show Gist options
  • Save jwodder/273715f59786d5125178381d2bb836ac to your computer and use it in GitHub Desktop.
Save jwodder/273715f59786d5125178381d2bb836ac to your computer and use it in GitHub Desktop.
An MCVE for a bug in tox
[build-system]
requires = [
"read_version ~= 0.1.0",
"setuptools >= 34.4.0",
"wheel"
]
build-backend = "setuptools.build_meta"
from read_version import read_version
from setuptools import setup
setup(
name='tox-bug',
version=read_version('tox_bug.py'),
py_modules=['tox_bug'],
)
[tox]
envlist = py35,py36,py37
skip_missing_interpreters = True
isolated_build = True
[testenv]
usedevelop = True
commands =
__version__ = '0.1.0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment