Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit 811611b

Browse files
committed
Changes for python3
1 parent 1b9f3b6 commit 811611b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ If you want to use external libraries, please do following
3232

3333
``` yaml
3434
build:
35-
- pip install -r requirements.txt
35+
- pip3 install -r requirements.txt
3636
```

README_ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ def main(args, options):
3232

3333
``` yaml
3434
build:
35-
- pip install -r requirements.txt
35+
- pip3 install -r requirements.txt
3636
```

cli-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# build:
2-
# - pip install -r requirements.txt
2+
# - pip3 install -r requirements.txt
33
files:
44
- .gitignore
55
- cli.py
66
- app/app.py
77
- app/__init__.py
88
- requirements.txt
9-
command: python cli.py
9+
command: python3 cli.py

codecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
env:
2-
APP_COMMAND: python cli.py
2+
APP_COMMAND: python3 cli.py
33
test: mocha

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
},
88
"repository": {
99
"type": "git",
10-
"url": "git+https://github.com/code-check/cli-template-ruby.git"
10+
"url": "git+https://github.com/code-check/cli-template-python3.git"
1111
},
1212
"keywords": [
1313
"codecheck",
1414
"cli",
15-
"ruby"
15+
"python"
1616
],
1717
"author": "Givery Inc.",
1818
"license": "ISC",
1919
"bugs": {
20-
"url": "https://github.com/code-check/cli-template-ruby/issues"
20+
"url": "https://github.com/code-check/cli-template-python3/issues"
2121
},
22-
"homepage": "https://github.com/code-check/cli-template-ruby#README.md",
22+
"homepage": "https://github.com/code-check/cli-template-python3#README.md",
2323
"devDependencies": {
2424
"chai": "^3.5.0",
2525
"codecheck": "^0.5.3"

0 commit comments

Comments
 (0)