Skip to content

Commit

Permalink
change deepdiff constraint (#437)
Browse files Browse the repository at this point in the history
* change deepdiff constarint

* after review

* add more supported python version

* update changelog

* update
  • Loading branch information
tkrol88 authored May 5, 2022
1 parent 5352c52 commit 591f913
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## moler 2.2.1

### Improved

* Change deepdiff constraint: `deepdiff == 5.7.0; python_version > '3'`

## moler 2.2.0

### Improved
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ apscheduler == 3.8.1; python_version < '3'
apscheduler; python_version > '3'
trollius; python_version < '3'
deepdiff == 3.3.0; python_version < '3'
deepdiff; python_version > '3'
deepdiff == 5.7.0; python_version > '3' and python_version < '3.7'
deepdiff; python_version >= '3.7'
psutil
python-dateutil
pyserial
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='moler', # Required
version='2.2.0', # Required
version='2.2.1', # Required
description='Moler is library to help in building automated tests', # Required
long_description=long_description, # Optional
long_description_content_type='text/markdown', # Optional (see note above)
Expand Down Expand Up @@ -41,6 +41,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',

'Topic :: Software Development',
'Topic :: Software Development :: Testing',
Expand Down

0 comments on commit 591f913

Please sign in to comment.