mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 21:25:42 +00:00 
			
		
		
		
	Merge pull request #387 from SchrodingersGat/python3
Change requirements file to explicity use python3
This commit is contained in:
		
							
								
								
									
										32
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										32
									
								
								Makefile
									
									
									
									
									
								
							| @@ -8,37 +8,37 @@ clean: | |||||||
| 	rm -f .coverage | 	rm -f .coverage | ||||||
|  |  | ||||||
| migrate: | migrate: | ||||||
| 	python InvenTree/manage.py makemigrations company | 	python3 InvenTree/manage.py makemigrations company | ||||||
| 	python InvenTree/manage.py makemigrations part | 	python3 InvenTree/manage.py makemigrations part | ||||||
| 	python InvenTree/manage.py makemigrations stock | 	python3 InvenTree/manage.py makemigrations stock | ||||||
| 	python InvenTree/manage.py makemigrations build | 	python3 InvenTree/manage.py makemigrations build | ||||||
| 	python InvenTree/manage.py makemigrations order | 	python3 InvenTree/manage.py makemigrations order | ||||||
| 	python InvenTree/manage.py migrate --run-syncdb | 	python3 InvenTree/manage.py migrate --run-syncdb | ||||||
| 	python InvenTree/manage.py check | 	python3 InvenTree/manage.py check | ||||||
|  |  | ||||||
| install: | install: | ||||||
| 	pip install -U -r requirements.txt | 	pip3 install -U -r requirements.txt | ||||||
| 	python InvenTree/keygen.py | 	python3 InvenTree/keygen.py | ||||||
|  |  | ||||||
| superuser: | superuser: | ||||||
| 	python InvenTree/manage.py createsuperuser | 	python3 InvenTree/manage.py createsuperuser | ||||||
|  |  | ||||||
| style: | style: | ||||||
| 	flake8 InvenTree | 	flake8 InvenTree | ||||||
|  |  | ||||||
| test: | test: | ||||||
| 	python InvenTree/manage.py check | 	python3 InvenTree/manage.py check | ||||||
| 	python InvenTree/manage.py test build company part stock order | 	python3 InvenTree/manage.py test build company part stock order | ||||||
|  |  | ||||||
| coverage: | coverage: | ||||||
| 	python InvenTree/manage.py check | 	python3 InvenTree/manage.py check | ||||||
| 	coverage run InvenTree/manage.py test build company part stock order | 	coverage run InvenTree/manage.py test build company part stock order | ||||||
| 	coverage html | 	coverage html | ||||||
|  |  | ||||||
| documentation: | documentation: | ||||||
| 	pip install -U -r docs/requirements.txt | 	pip3 install -U -r docs/requirements.txt | ||||||
| 	cd docs & make html | 	cd docs & make html | ||||||
|  |  | ||||||
| backup: | backup: | ||||||
| 	python InvenTree/manage.py dbbackup | 	python3 InvenTree/manage.py dbbackup | ||||||
| 	python InvenTree/manage.py mediabackup | 	python3 InvenTree/manage.py mediabackup | ||||||
		Reference in New Issue
	
	Block a user