Skip to content

Commit

Permalink
fix: fix package tests
Browse files Browse the repository at this point in the history
  • Loading branch information
igormcoelho committed Jun 22, 2023
1 parent e96f124 commit 839566c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit 839566c

Please sign in to comment.