mirror of
				https://github.com/SectorLabs/django-localized-fields.git
				synced 2025-10-30 18:48:56 +03:00 
			
		
		
		
	Add django-postgres-extra 1.2 as a dependency
This commit is contained in:
		
							
								
								
									
										14
									
								
								README.rst
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								README.rst
									
									
									
									
									
								
							| @@ -7,24 +7,14 @@ django-localized-fields | |||||||
| .. image:: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/badges/coverage.png | .. image:: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/badges/coverage.png | ||||||
|     :target: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/ |     :target: https://scrutinizer-ci.com/g/SectorLabs/django-localized-fields/ | ||||||
|  |  | ||||||
| .. image:: https://travis-ci.com/SectorLabs/django-localized-fields.svg?token=sFgxhDFpypxkMcvhRoSz&branch=master | .. image:: https://img.shields.io/github/license/SectorLabs/django-localized-fields.svg | ||||||
|     :target: https://travis-ci.com/SectorLabs/django-localized-fields |  | ||||||
|  |  | ||||||
| .. image:: https://badge.fury.io/py/django-localized-fields.svg | .. image:: https://badge.fury.io/py/django-localized-fields.svg | ||||||
|     :target: https://pypi.python.org/pypi/django-localized-fields |     :target: https://pypi.python.org/pypi/django-localized-fields | ||||||
|  |  | ||||||
| .. image:: https://img.shields.io/github/license/SectorLabs/django-localized-fields.svg |  | ||||||
|  |  | ||||||
| ``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. | ``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. | ||||||
|  |  | ||||||
| This package requires Python 3.5 or newer and Django 1.10 or newer. | This package requires Python 3.5 or newer, Django 1.10 or newer and PostgreSQL 9.6 or newer. | ||||||
|  |  | ||||||
| In the pipeline |  | ||||||
| --------------- |  | ||||||
| We're working on making this easier to setup and use. Any feedback is apreciated. Here's a short list of things we're working to improve: |  | ||||||
|  |  | ||||||
| * Make it unnecesarry to add anything to your `INSTALLED_APPS`. |  | ||||||
| * Move generic PostgreSQL code to a separate package. |  | ||||||
|  |  | ||||||
| Installation | Installation | ||||||
| ------------ | ------------ | ||||||
|   | |||||||
| @@ -1 +1 @@ | |||||||
| django-postgres-extra==1.0 | django-postgres-extra==1.2 | ||||||
|   | |||||||
							
								
								
									
										3
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								setup.py
									
									
									
									
									
								
							| @@ -17,6 +17,9 @@ setup( | |||||||
|     author='Sector Labs', |     author='Sector Labs', | ||||||
|     author_email='open-source@sectorlabs.ro', |     author_email='open-source@sectorlabs.ro', | ||||||
|     keywords=['django', 'localized', 'language', 'models', 'fields'], |     keywords=['django', 'localized', 'language', 'models', 'fields'], | ||||||
|  |     install_requires=[ | ||||||
|  |         'django-postgres-extra>=1.2' | ||||||
|  |     ], | ||||||
|     classifiers=[ |     classifiers=[ | ||||||
|         'Environment :: Web Environment', |         'Environment :: Web Environment', | ||||||
|         'Framework :: Django', |         'Framework :: Django', | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user