@corva/create-app 0.34.0-3 → 0.34.0-4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,13 +2,14 @@
2
2
  .DEFAULT_GOAL := default
3
3
 
4
4
  default: install
5
- install: venv
5
+ install: prepare-venv
6
6
  @. venv/bin/activate && pip install -r requirements.txt
7
- venv:
8
- @test -d venv || python -m venv venv
7
+ prepare-venv:
8
+ @which python3 > /dev/null || (echo "python3 not found, please install it first" && exit 1;)
9
+ @test -d venv || python3 -m venv venv
9
10
  bundle:
10
11
  @create-corva-app zip . --bump-version=skip
11
12
  release:
12
13
  @create-corva-app release . --bump-version=skip
13
- test: venv
14
+ test: prepare-venv
14
15
  @. venv/bin/activate && pytest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.34.0-3",
3
+ "version": "0.34.0-4",
4
4
  "private": false,
5
5
  "description": "Create app to use it in CORVA.AI",
6
6
  "keywords": [