mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-11 09:08:32 +02:00
Dateutil added to requirements.
This commit is contained in:
parent
8c9ae82b98
commit
a4448b0c34
5 changed files with 8 additions and 2 deletions
|
@ -5,7 +5,6 @@ python:
|
|||
- "3.3"
|
||||
install:
|
||||
- "pip install -q -r requirements.txt --use-mirrors"
|
||||
- "pip install -q behave python-dateutil"
|
||||
# command to run tests
|
||||
script:
|
||||
- python --version
|
||||
|
|
|
@ -4,6 +4,7 @@ Changelog
|
|||
|
||||
### 1.7 (December 22, 2013)
|
||||
|
||||
* __1.7.2__ Dateutil added to requirements.
|
||||
* __1.7.1__ Fixes issues with parsing time information in entries.
|
||||
* __1.7.0__ Edit encrypted or DayOne journals with `jrnl --edit`.
|
||||
|
||||
|
|
5
Makefile
5
Makefile
|
@ -17,3 +17,8 @@ gh_pages:
|
|||
# Upload to pipy
|
||||
dist:
|
||||
python setup.py publish
|
||||
|
||||
clean:
|
||||
rm -rf dist
|
||||
rm -rf _static
|
||||
rm -rf jrnl.egg-info
|
||||
|
|
|
@ -7,7 +7,7 @@ jrnl is a simple journal application for your command line.
|
|||
"""
|
||||
|
||||
__title__ = 'jrnl'
|
||||
__version__ = '1.7.1'
|
||||
__version__ = '1.7.2'
|
||||
__author__ = 'Manuel Ebert'
|
||||
__license__ = 'MIT License'
|
||||
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
||||
|
|
|
@ -6,3 +6,4 @@ argparse==1.2.1
|
|||
tzlocal == 1.0
|
||||
slugify==0.0.1
|
||||
keyring==3.0.5
|
||||
python-dateutil==2.2
|
||||
|
|
Loading…
Add table
Reference in a new issue