Skip to content

Commit

Permalink
fix: add pyparsing dependency #11
Browse files Browse the repository at this point in the history
  • Loading branch information
davethecipo committed Jan 6, 2015
1 parent 5c28486 commit f1f9886
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
language: python
python:
- "3.4"
# command to install dependencies
install: "pip install -r requirements.txt -r test-requirements"
# command to run tests
script: py.test polibeepsync
13 changes: 13 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,19 @@ This code is in the beta stage. Documentation is under construction
Changelog
=========

0.2.3 (2015-01-06)
-------------------

Fix
~~~

- pyparsing dependency added.

Changes
~~~~~~~~

- Add travis-ci configuration

0.2.2 (2015-01-03)
-------------------

Expand Down
2 changes: 1 addition & 1 deletion polibeepsync/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.2"
__version__ = "0.2.3"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ beautifulsoup4==4.3.2
requests==2.3.0
PySide==1.2.2
appdirs==1.4.0

pyparsing==2.0.3
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ def find_version(*file_paths):
"requests",
"appdirs",
"PySide",
"beautifulsoup4"
"beautifulsoup4",
"pyparsing"
],
packages = ['polibeepsync'],
description = "Sync files from https://beep.metid.polimi.it "
Expand Down

0 comments on commit f1f9886

Please sign in to comment.