Update Mongodb inventory URL to fix docs build (#13939)

Master is failing on docs build because of the following error:

```
Failed to fetch inventory: https://api.mongodb.com/python/current/objects.inv
```

This is because the URL is changed to https://pymongo.readthedocs.io/en/stable/objects.inv

(cherry picked from commit 7a5aafce08)
This commit is contained in:
Kaxil Naik 2021-01-28 00:09:02 +00:00
Родитель d3200279f7
Коммит 8ea6e3b908
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,7 @@ THIRD_PARTY_INDEXES = {
'celery': 'https://docs.celeryproject.org/en/stable',
'hdfs': 'https://hdfscli.readthedocs.io/en/latest',
'jinja2': 'https://jinja.palletsprojects.com/en/master',
'mongodb': 'https://api.mongodb.com/python/current',
'mongodb': 'https://pymongo.readthedocs.io/en/stable/',
'pandas': 'https://pandas.pydata.org/pandas-docs/stable',
'python': 'https://docs.python.org/3',
'requests': 'https://requests.readthedocs.io/en/master',