Files
macports-ports/python/py-note-seq/files/patch-setup.py.diff
2023-05-17 15:25:03 -05:00

16 lines
607 B
Diff

--- setup.py.orig 2022-07-01 11:26:44.000000000 -0500
+++ setup.py 2023-05-17 15:21:56.000000000 -0500
@@ -60,10 +60,10 @@
packages=find_packages(),
package_data={'note_seq': ['*.pyi', '**/*.pyi']},
install_requires=REQUIRED_PACKAGES,
- setup_requires=['pytest-runner', 'pytest-pylint'],
+ # setup_requires=['pytest-runner', 'pytest-pylint'],
tests_require=[
'pytest >= 5.2.0',
- 'pytest-xdist < 1.30.0', # 1.30 has problems working with pylint plugin
+ 'pytest-xdist', # 1.30 has problems working with pylint plugin
'pylint >= 2.4.2',
],
)