From d7348b39ec8ca6e547b5be305727aaa9a417bf91 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sat, 22 Jun 2024 18:46:44 +0200 Subject: [PATCH] setup.py: Require Python 3 This is in line with what ydiff.py is currently doing at runtime. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index b6a88d5..f119ae3 100755 --- a/setup.py +++ b/setup.py @@ -33,6 +33,7 @@ 'Programming Language :: Python', 'Programming Language :: Python :: 3', ], + python_requires='>=3', py_modules=['ydiff'], scripts=['ydiff'], )