mirror of
				https://github.com/graphql-python/graphene-django.git
				synced 2025-10-31 07:57:31 +03:00 
			
		
		
		
	* 🔧 Add pre-commit config Similar to graphene and graphene-sqlalchemy * ⬆ Bump black * 👷 Lint on CI * ⬆ Bump flake8-black * 🔧 Keep excluding migrations * ⬆ Bump flake8 * 🔧 Remove black and flake8 from tox config * ⬆ Update pre-commit versions * Upgrade syntax to python 3.7+ * Format with pre-commit dedent docs/schema.py to allow formatting * Fix tests on python 3.7
		
			
				
	
	
		
			26 lines
		
	
	
		
			648 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			648 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| class MissingType:
 | |
|     def __init__(self, *args, **kwargs):
 | |
|         pass
 | |
| 
 | |
| 
 | |
| try:
 | |
|     # Postgres fields are only available in Django with psycopg2 installed
 | |
|     # and we cannot have psycopg2 on PyPy
 | |
|     from django.contrib.postgres.fields import (
 | |
|         IntegerRangeField,
 | |
|         ArrayField,
 | |
|         HStoreField,
 | |
|         JSONField as PGJSONField,
 | |
|         RangeField,
 | |
|     )
 | |
| except ImportError:
 | |
|     IntegerRangeField, ArrayField, HStoreField, PGJSONField, RangeField = (
 | |
|         MissingType,
 | |
|     ) * 5
 | |
| 
 | |
| try:
 | |
|     # JSONField is only available from Django 3.1
 | |
|     from django.db.models import JSONField
 | |
| except ImportError:
 | |
|     JSONField = MissingType
 |