File tree Expand file tree Collapse file tree 4 files changed +17
-5
lines changed
Expand file tree Collapse file tree 4 files changed +17
-5
lines changed Original file line number Diff line number Diff line change 11.PHONY : clean-pyc clean-build install
22
33install :
4- pip install -e .
4+ pip3 install -e .
55
66clean :
77 rm -rf build/
88 rm -rf dist/
99 rm -rf * .egg-info
1010 find . -name ' *.pyc' -exec rm -f {} +
11- find . -name ' *.pyo' -exec rm -f {} +
11+ find . -name ' *.pyo' -exec rm -f {} +
Original file line number Diff line number Diff line change @@ -20,16 +20,22 @@ Sykle is a cli tool for calling commonly used commands in docker-compose project
2020
2121### Requirements
2222
23- - ` python 3.7 ` (may work on earlier versions of 3, but only tested on 3.7 . Plugins do NOT work in python version 2.7)
23+ - ` python 3.4 ` (may work on earlier versions of 3, but not tested. Plugins do NOT work in python version 2.7)
2424- ` docker ` (locally and on deployment target)
2525- ` docker-compose ` (locally and on deployment target)
2626- ` ssh `
2727- ` scp `
2828
2929### Installation
3030
31+ #### If python3 is your default installation, you can use pip
32+
3133` pip install git+ssh://git@github.com/typecode/sykle.git --upgrade `
3234
35+ #### If you have a separate ` python3 ` installation, you should use pip3
36+
37+ ` pip3 install git+ssh://git@github.com/typecode/sykle.git --upgrade `
38+
3339### Configuration
3440
3541Because sykle tries to make as few assumptions about your project as possible, you'll need to declaritively define how your app should run via static configuration files
Original file line number Diff line number Diff line change @@ -20,16 +20,22 @@ Sykle is a cli tool for calling commonly used commands in docker-compose project
2020
2121### Requirements
2222
23- - `python 3.7 ` (may work on earlier versions of 3, but only tested on 3.7 . Plugins do NOT work in python version 2.7)
23+ - `python 3.4 ` (may work on earlier versions of 3, but not tested. Plugins do NOT work in python version 2.7)
2424- `docker` (locally and on deployment target)
2525- `docker-compose` (locally and on deployment target)
2626- `ssh`
2727- `scp`
2828
2929### Installation
3030
31+ #### If python3 is your default installation, you can use pip
32+
3133`pip install git+ssh://git@github.com/typecode/sykle.git --upgrade`
3234
35+ #### If you have a separate `python3` installation, you should use pip3
36+
37+ `pip3 install git+ssh://git@github.com/typecode/sykle.git --upgrade`
38+
3339### Configuration
3440
3541Because sykle tries to make as few assumptions about your project as possible, you'll need to declaritively define how your app should run via static configuration files
Original file line number Diff line number Diff line change 11# __init__.py
22
3- __version__ = '0.3.3 '
3+ __version__ = '0.3.4 '
44
55
66class Sykle ():
You can’t perform that action at this time.
0 commit comments