Merge pull request #19 from jaywink/bump-dependencies

Bump lxml and python-dateutil dependencies
merge-requests/130/head
Jason Robinson 2016-05-09 22:02:49 +03:00
commit b709622ed2
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -2,6 +2,8 @@
### Changed ### Changed
- Test factories and other test files are now included in the package installation. Factories can be useful when creating project tests. - Test factories and other test files are now included in the package installation. Factories can be useful when creating project tests.
- Bump allowed `lxml` to 3.6.0
- Bump allowed `python-dateutil` to 2.5.3
### Fixes ### Fixes
- Don't raise on Post.tags if Post.raw_content is None - Don't raise on Post.tags if Post.raw_content is None

Wyświetl plik

@ -20,10 +20,10 @@ setup(
license="BSD 3-clause", license="BSD 3-clause",
install_requires=[ install_requires=[
"dirty-validators==0.3.2", "dirty-validators==0.3.2",
"lxml==3.4.4", "lxml>=3.4.4, <=3.6.0",
"jsonschema==2.5.1", "jsonschema==2.5.1",
"pycrypto==2.6.1", "pycrypto==2.6.1",
"python-dateutil==2.4.2", "python-dateutil>=2.4.2, <=2.5.3",
"python-xrd==0.1", "python-xrd==0.1",
], ],
include_package_data=True, include_package_data=True,