mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 18:05:51 +01:00
Pin factory-boy dependency on 1.3.x branch
Factory Boy 2.0 have removed the "extracted_key" keyword argument from post_generation() hook. Until we can update tests to work with 2.0 make dependency on 1.3.x branch. In turn, the update got stalled by a bug in Factory Boy (https://github.com/rbarrois/factory_boy/issues/53).
This commit is contained in:
@@ -4,7 +4,7 @@ South
|
|||||||
django-tastypie==0.9.12
|
django-tastypie==0.9.12
|
||||||
django-braces
|
django-braces
|
||||||
mock
|
mock
|
||||||
factory-boy
|
factory-boy>=1.3,<2.0
|
||||||
django_compressor
|
django_compressor
|
||||||
requests
|
requests
|
||||||
http://github.com/kklimonda/django-images/tarball/master#egg=django-images
|
http://github.com/kklimonda/django-images/tarball/master#egg=django-images
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -38,7 +38,7 @@ setup(
|
|||||||
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
|
||||||
long_description=read('README.md'),
|
long_description=read('README.md'),
|
||||||
dependency_links=dependency_links,
|
dependency_links=dependency_links,
|
||||||
tests_require=['mock', 'factory-boy'],
|
tests_require=['mock', 'factory-boy>=1.3,<2.0'],
|
||||||
install_requires=install_requires,
|
install_requires=install_requires,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 4 - Beta",
|
"Development Status :: 4 - Beta",
|
||||||
|
|||||||
Reference in New Issue
Block a user