From 839566c43f018c8fdadd287a21aafeea488a1425 Mon Sep 17 00:00:00 2001 From: Igor Machado Date: Thu, 22 Jun 2023 18:42:16 +0000 Subject: [PATCH] fix: fix package tests --- Development.md | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Development.md b/Development.md index 59f4b75..f123ef3 100644 --- a/Development.md +++ b/Development.md @@ -17,7 +17,7 @@ When changes are consolidated and tested, one may want to push these changes on ``` subprocess.check_call( - ['git', 'clone', '--depth', '1', '--branch', '5.0.14', 'https://github.com/optframe/optframe', 'optframe-git']) + ['git', 'clone', '--depth', '1', '--branch', '5.0.X', 'https://github.com/optframe/optframe', 'optframe-git']) ``` Then, it's possible to locally test the package (with `make clean` and `make install`), diff --git a/setup.py b/setup.py index 27cb961..6b74107 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ def run(self): # git fetch # git checkout origin/master -ft subprocess.check_call( - ['git', 'clone', '--depth', '1', '--branch', '5.0.12', 'https://github.com/optframe/optframe', 'optframe-git']) + ['git', 'clone', '--depth', '1', '--branch', '5.0.14', 'https://github.com/optframe/optframe', 'optframe-git']) # ===== check that clone() was done fine ====== # subprocess.check_call( # ['ls', '-la', 'optframe-git'])