From 251c275168f2da418b3fb8866d0136990bf27a50 Mon Sep 17 00:00:00 2001 From: Ian Galpin <ian.galpin@geant.org> Date: Tue, 6 Dec 2022 13:19:25 +0000 Subject: [PATCH] Exclude setup.py from flake8 as external build tools still use double quotes instead of single quotes and thus breaks the build on a release --- setup.py | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 49655b8e..6ceebadc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='compendium-v2', - version='0.3', + version="0.3", author='GEANT', author_email='swd@geant.org', description='Flask and React project for displaying ' diff --git a/tox.ini b/tox.ini index 74a219d3..c5dbcc55 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ envlist = py39 [flake8] -exclude = ./.tox,./webapp,./compendium_v2/migrations +exclude = ./.tox,./webapp,./compendium_v2/migrations,./setup.py [testenv] deps = -- GitLab