mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 01:18:31 +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"
|
- "3.3"
|
||||||
install:
|
install:
|
||||||
- "pip install -q -r requirements.txt --use-mirrors"
|
- "pip install -q -r requirements.txt --use-mirrors"
|
||||||
- "pip install -q behave python-dateutil"
|
|
||||||
# command to run tests
|
# command to run tests
|
||||||
script:
|
script:
|
||||||
- python --version
|
- python --version
|
||||||
|
|
|
@ -4,6 +4,7 @@ Changelog
|
||||||
|
|
||||||
### 1.7 (December 22, 2013)
|
### 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.1__ Fixes issues with parsing time information in entries.
|
||||||
* __1.7.0__ Edit encrypted or DayOne journals with `jrnl --edit`.
|
* __1.7.0__ Edit encrypted or DayOne journals with `jrnl --edit`.
|
||||||
|
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -17,3 +17,8 @@ gh_pages:
|
||||||
# Upload to pipy
|
# Upload to pipy
|
||||||
dist:
|
dist:
|
||||||
python setup.py publish
|
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'
|
__title__ = 'jrnl'
|
||||||
__version__ = '1.7.1'
|
__version__ = '1.7.2'
|
||||||
__author__ = 'Manuel Ebert'
|
__author__ = 'Manuel Ebert'
|
||||||
__license__ = 'MIT License'
|
__license__ = 'MIT License'
|
||||||
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
__copyright__ = 'Copyright 2013 Manuel Ebert'
|
||||||
|
|
|
@ -6,3 +6,4 @@ argparse==1.2.1
|
||||||
tzlocal == 1.0
|
tzlocal == 1.0
|
||||||
slugify==0.0.1
|
slugify==0.0.1
|
||||||
keyring==3.0.5
|
keyring==3.0.5
|
||||||
|
python-dateutil==2.2
|
||||||
|
|
Loading…
Add table
Reference in a new issue