Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update jinja2 and pyzmq, as well as some test/dev dependencies #3493

Merged
merged 2 commits into from
Feb 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ creating directories when executed for suites that do not exist.
[#3433](https://github.com/cylc/cylc-flow/pull/3433) - fix server abort at
shutdown during remote run dir tidy (introduced during Cylc 8 development).

[#3493](https://github.com/cylc/cylc-flow/pull/3493) - Update jinja2 and
pyzmq, as well as some test/dev dependencies. Fixes Jinja2 error where
validation shows incorrect context.

-------------------------------------------------------------------------------
## __cylc-8.0a1 (2019-09-18)__

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,19 +46,19 @@ def find_version(*file_paths):
'colorama==0.4.*',
'graphene>=2.1,<3',
'metomi-isodatetime==1!2.0.*',
'jinja2>=2.10.1, <2.11.0',
'jinja2==2.11.*',
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, this could be

  • jinja2>=2.10.1, <2.12.0 (so users could still use 2.10.1 if they prefer?)
  • jinja2~=2.11.1 (gives users 2.11.0, or anything after that)

'markupsafe==1.1.*',
'protobuf==3.11.*',
'pyzmq==18.0.*',
'pyzmq==18.1.*',
'click>=7.0'
]
tests_require = [
'codecov==2.0.*',
'coverage==4.5.*',
'pytest-cov==2.6.*',
'pytest==4.4.*',
'coverage==5.0.*',
'pytest-cov==2.8.*',
'pytest==5.3.*',
'pycodestyle==2.5.*',
'testfixtures==6.6.*'
'testfixtures==6.11.*'
]

extra_requires = {
Expand Down