update packages

This commit is contained in:
jnozsc 2017-09-16 11:29:30 -07:00
parent 4bdc082fc7
commit 2733366152
2 changed files with 6 additions and 6 deletions

View file

@ -10,7 +10,7 @@ python:
- "nightly" - "nightly"
install: install:
- "pip install -e ." - "pip install -e ."
- "pip install pycryptodome>=3.4" - "pip install pycryptodome>=3.4.5"
- "pip install -q behave" - "pip install -q behave"
# command to run tests # command to run tests
script: script:

View file

@ -141,15 +141,15 @@ setup(
description = "A command line journal application that stores your journal in a plain text file", description = "A command line journal application that stores your journal in a plain text file",
packages = ['jrnl'], packages = ['jrnl'],
install_requires = [ install_requires = [
"parsedatetime>=1.2", "parsedatetime>=2.4",
"pytz>=2013b", "pytz>=2017.2",
"six>=1.6.1", "six>=1.10.0",
"tzlocal>=1.1", "tzlocal>=1.4",
"keyring>=3.3", "keyring>=3.3",
"keyrings.alt>=1.3", "keyrings.alt>=1.3",
] + [p for p, cond in conditional_dependencies.items() if cond], ] + [p for p, cond in conditional_dependencies.items() if cond],
extras_require = { extras_require = {
"encrypted": "pycryptodome>=3.4" "encrypted": "pycryptodome>=3.4.5"
}, },
long_description=__doc__, long_description=__doc__,
entry_points={ entry_points={