From 57a73af18a6a98323c41af9decef708613d5cf3c Mon Sep 17 00:00:00 2001 From: Caceresenzo Date: Thu, 20 Apr 2023 11:45:30 +0200 Subject: [PATCH] feat(push): ignore `__pycache__` directories Closes #2 --- crunch/__version__.py | 2 +- crunch/constants.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crunch/__version__.py b/crunch/__version__.py index a55b041..b285b7e 100644 --- a/crunch/__version__.py +++ b/crunch/__version__.py @@ -1,6 +1,6 @@ __title__ = 'crunch-cli' __description__ = 'crunch-cli - CLI of the CrunchDAO Platform' -__version__ = '0.13.0' +__version__ = '0.13.1' __author__ = 'Enzo CACERES' __author_email__ = 'enzo.caceres@crunchdao.com' __url__ = 'https://github.com/crunchdao/crunch-cli' diff --git a/crunch/constants.py b/crunch/constants.py index fbfdcb7..3b947fd 100644 --- a/crunch/constants.py +++ b/crunch/constants.py @@ -9,4 +9,5 @@ ".git/", f"{DOT_CRUNCHDAO_DIRECTORY}/", f"{DOT_DATA_DIRECTORY}/", + f"__pycache__/", ]