python-pytest-xdist/0001-add-setup.py.patch

13 lines
265 B
Diff
Raw Normal View History

2022-10-28 10:25:37 +08:00
--- a/setup.py 1970-01-01 08:00:00.000000000 +0800
+++ b/setup.py 2022-10-19 09:38:57.746598491 +0800
2022-12-16 14:26:48 +08:00
@@ -0,0 +1,9 @@
2022-10-28 10:25:37 +08:00
+#!/usr/bin/env python
+
+from setuptools import setup
+
+if __name__ == "__main__":
2022-12-16 14:26:48 +08:00
+ setup(
+ name = "pytest-xdist",
+ version = "3.1.0"
+ )