mirror of
				https://github.com/facebookresearch/pytorch3d.git
				synced 2025-11-04 18:02:14 +08:00 
			
		
		
		
	Summary: This is needed from september 2023. As a side effect, implicitron docs should build better because typing.get_args exists etc. Reviewed By: shapovalov Differential Revision: D47363855 fbshipit-source-id: a954c5b81b1e5a4435fca146a11aea0d2ca96f45
		
			
				
	
	
		
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			760 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Copyright (c) Meta Platforms, Inc. and affiliates.
 | 
						|
# All rights reserved.
 | 
						|
#
 | 
						|
# This source code is licensed under the BSD-style license found in the
 | 
						|
# LICENSE file in the root directory of this source tree.
 | 
						|
 | 
						|
# Read the Docs configuration file
 | 
						|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
 | 
						|
 | 
						|
# Required
 | 
						|
version: 2
 | 
						|
 | 
						|
# Set the version of Python and other tools you might need
 | 
						|
build:
 | 
						|
  os: ubuntu-22.04
 | 
						|
  tools:
 | 
						|
    python: "3.11"
 | 
						|
 | 
						|
# Build documentation in the docs/ directory with Sphinx
 | 
						|
sphinx:
 | 
						|
  configuration: docs/conf.py
 | 
						|
 | 
						|
# We recommend specifying your dependencies to enable reproducible builds:
 | 
						|
# https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
 | 
						|
python:
 | 
						|
  install:
 | 
						|
  - requirements: docs/requirements.txt
 |