Skip to content

Commit

Permalink
Do not fix dependencies version
Browse files Browse the repository at this point in the history
pyyaml released few days ago a new minor release, namely 3.12. As Pykwalify explicitely relies on 3.11, this means that many projects could not benefit from the new version. Moreover, as pip isn't bundled with a dependency contraints solver, this means that any requirements.txt that specify pyyaml and pykwalify (in this order) will not be satisfied (because pyyaml will be first installed in 3.12, then pykwalify will require 3.11, which is naturally in conflict with 3.12).
  • Loading branch information
AlexandreDecan authored and Grokzen committed Sep 15, 2016
1 parent b53ae72 commit 8c3327e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Next release (??? ?, 2016)
and for production, use *pip install 'pykwalify[ruamel]'*
- ruamel.yaml is now used before PyYaml if installed on your system
- Fixed a bug where scalar type was not validated correctly.
- Unpin all dependencies but still maintain a minimum versions of each lib


1.5.1 (Mar 6, 2016)
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
docopt==0.6.2
PyYAML==3.11
python-dateutil==2.4.2
docopt>=0.6.2
PyYAML>=3.11
python-dateutil>=2.4.2
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
],
},
install_requires=[
'docopt==0.6.2',
'PyYAML==3.11',
'python-dateutil==2.4.2',
'docopt>=0.6.2',
'PyYAML>=3.11',
'python-dateutil>=2.4.2',
],
classifiers=(
# 'Development Status :: 1 - Planning',
Expand Down

0 comments on commit 8c3327e

Please sign in to comment.