Skip to content

Commit

Permalink
Merge pull request #107 from MichaelAquilina/0.2.9
Browse files Browse the repository at this point in the history
0.2.9
  • Loading branch information
MichaelAquilina committed Mar 21, 2018
2 parents cea1dc0 + 4799ebc commit a85820a
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ dist/*
build
*.egg-info/*
.venv
.mypy_cache
.pytest_cache
*.py[co]
__pycache__
.cache
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Changelog
=========

0.2.9 - 21-March-2018
---------------------

* Upgrade dev-requirements
* Fix #106 (Unable to handle multi word targets)
* Add cache directories to .gitignore
* Drop support for python 3.3
* Start using CHANGELOGS
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ See it in action here:
Requirements
------------

S4 requires python 3.3+ to work
S4 requires python 3.4+ to work

Installation
------------
Expand Down Expand Up @@ -195,7 +195,7 @@ Running locally
``tox`` is used to run the tests locally:

::

pip install tox

And then to run the tests locally:
Expand Down
2 changes: 1 addition & 1 deletion bin/s4
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#! /bin/sh

/usr/bin/env python3 -m s4.cli $@
/usr/bin/env python3 -m s4.cli "$@"
18 changes: 9 additions & 9 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Faker==0.7.3
flake8==3.0.4
flake8-import-order==0.13.0
freezegun==0.3.7
ipdb==0.10.1
Faker==0.8.12
flake8==3.5.0
flake8-import-order==0.17.1
freezegun==0.3.10
ipdb==0.11.0
mock==2.0.0
moto==0.4.30
pytest==3.0.2
pytest-cov==2.4.0
pytest-timeout==1.2.0
moto==1.3.0
pytest==3.4.2
pytest-cov==2.5.1
pytest-timeout==1.2.1
pytz==2016.6.1
2 changes: 1 addition & 1 deletion s4/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.2.8'
VERSION = '0.2.9'
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
license='GPLv3',
author_email='michaelaquilina@gmail.com',
url='https://github.com/MichaelAquilina/s4',
python_requires=">=3.4",
keywords='aws s3 backup sync',
scripts=[
'bin/s4',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py33, py34, py35, py36, py37
envlist = py34, py35, py36, py37

[testenv]
passenv = CI TRAVIS TRAVIS_*
Expand Down

0 comments on commit a85820a

Please sign in to comment.