mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Fix outstanding sphinx warnings; - Change mycells.lib to use `text` parsing instead of (currently) unsupported `Liberty`. - Remove unused `troubleshooting.rst`, moving the todo into the index.
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			328 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# .readthedocs.yaml
 | 
						|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
 | 
						|
 | 
						|
version: 2
 | 
						|
 | 
						|
build:
 | 
						|
    os: ubuntu-22.04
 | 
						|
    tools:
 | 
						|
        python: '3.12'
 | 
						|
 | 
						|
formats:
 | 
						|
  - pdf
 | 
						|
 | 
						|
sphinx:
 | 
						|
  configuration: docs/source/conf.py
 | 
						|
  fail_on_warning: true
 | 
						|
 | 
						|
python:
 | 
						|
  install:
 | 
						|
    - requirements: docs/source/requirements.txt
 |