Skip to content

Commit 0e28038

Browse files
authored
Merge pull request #27 from typecode/develop
Version 0.3.4
2 parents a22007d + 581d6b6 commit 0e28038

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.PHONY: clean-pyc clean-build install
22

33
install:
4-
pip install -e .
4+
pip3 install -e .
55

66
clean:
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 {} +

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

3541
Because 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

README.mustache

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

3541
Because 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

sykle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# __init__.py
22

3-
__version__ = '0.3.3'
3+
__version__ = '0.3.4'
44

55

66
class Sykle():

0 commit comments

Comments
 (0)