Skip to content
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: 2 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pyrsistent~=0.16.0; python_version<"3"
boto3~=1.5
enum34~=1.1; python_version<"3.4"
jsonschema~=3.0
six~=1.11
jsonschema~=3.2
Copy link
Contributor

Choose a reason for hiding this comment

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

have we verified that this does not break any tests?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

These changes do not do anything in fact. ~=3.0 and ~=3.2 both spec to 3.x

six~=1.15

19 changes: 10 additions & 9 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
coverage>=4.4.0
flake8>=3.3.0
tox>=2.2.1
pytest-cov>=2.4.0
coverage>=5.3
flake8>=3.8.4
tox>=3.20.1
pytest-cov>=2.10.1
pylint>=1.7.2,<2.0
pyyaml>=5.1
pyyaml>=5.3.1

# Test requirements
pytest>=3.0.7
mock>=2.0.0
parameterized>=0.6.1
pytest>=6.1.1; python_version >= '3.6'
pytest~=4.6.11; python_version < '3.6' # pytest dropped python 2 support after 4.6.x
mock>=3.0.5,<4.0.0 # 4.0.0 drops Python 2 support
parameterized>=0.7.4

# Requirements for examples
requests>=2.20.0
requests>=2.24.0

# CLI requirements
docopt>=0.6.2
Expand Down