mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-18 12:08:31 +02:00
update packages
This commit is contained in:
parent
4bdc082fc7
commit
2733366152
2 changed files with 6 additions and 6 deletions
|
@ -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:
|
||||||
|
|
10
setup.py
10
setup.py
|
@ -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={
|
||||||
|
|
Loading…
Add table
Reference in a new issue