mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 00:02:20 -05:00 
			
		
		
		
	[Poetry 1.8.0](https://github.com/python-poetry/poetry/releases/tag/1.8.0) added support for [non-package mode](https://python-poetry.org/docs/basic-usage/#operating-modes), e.g. projects that are not python packages themselves like we are. Make use of that and remove the previous workaround via `--no-root`.
		
			
				
	
	
		
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			237 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[tool.poetry]
 | 
						|
package-mode = false
 | 
						|
 | 
						|
[tool.poetry.dependencies]
 | 
						|
python = "^3.10"
 | 
						|
 | 
						|
[tool.poetry.group.dev.dependencies]
 | 
						|
djlint = "1.34.1"
 | 
						|
yamllint = "1.35.1"
 | 
						|
 | 
						|
[tool.djlint]
 | 
						|
profile="golang"
 | 
						|
ignore="H005,H006,H013,H016,H020,H021,H030,H031"
 |