Skip to content

pyup: Scheduled weekly dependency update for week 19 #8170

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 11, 2021
13 changes: 5 additions & 8 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
sys.path.append(os.path.dirname(__file__))
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "readthedocs.settings.dev")

from django.conf import settings
from django.utils import timezone

import django
Expand All @@ -32,18 +31,16 @@ def get_version():
'doc_extensions',
'sphinx_tabs.tabs',
'sphinx-prompt',
'recommonmark',
'notfound.extension',
'hoverxref.extension',
'sphinx_search.extension',
'sphinxemoji.sphinxemoji',
]

templates_path = ['_templates']
source_suffix = ['.rst', '.md']

master_doc = 'index'
project = u'Read the Docs'
project = 'Read the Docs'
copyright = '2010-{}, Read the Docs, Inc & contributors'.format(
timezone.now().year
)
Expand All @@ -59,12 +56,12 @@ def get_version():
}
htmlhelp_basename = 'ReadTheDocsdoc'
latex_documents = [
('index', 'ReadTheDocs.tex', u'Read the Docs Documentation',
u'Eric Holscher, Charlie Leifer, Bobby Grace', 'manual'),
('index', 'ReadTheDocs.tex', 'Read the Docs Documentation',
'Eric Holscher, Charlie Leifer, Bobby Grace', 'manual'),
]
man_pages = [
('index', 'read-the-docs', u'Read the Docs Documentation',
[u'Eric Holscher, Charlie Leifer, Bobby Grace'], 1)
('index', 'read-the-docs', 'Read the Docs Documentation',
['Eric Holscher, Charlie Leifer, Bobby Grace'], 1)
]

exclude_patterns = [
Expand Down
4 changes: 2 additions & 2 deletions requirements/docker.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ django-redis-cache==2.1.3 # pyup: ignore
pillow==8.2.0

# local debugging tools
watchdog==2.0.3
watchdog==2.1.1
datadiff==2.0.0
ipdb==0.13.7
pdbpp==0.10.2
Expand All @@ -25,4 +25,4 @@ jedi>0.17,<0.18 # pyup: ignore
argh==0.26.2

# run tests
tox==3.23.0
tox==3.23.1
14 changes: 3 additions & 11 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
# Packages required to build docs, independent of application dependencies

Sphinx==3.5.4
# Our deps aren't ready for 4.0 yet.
# - sphinx-tabs
Sphinx==3.5.4 # pyup: <4.0
Pygments==2.9.0

# doctuils==0.15 produces this error
# File "python3.6/site-packages/docutils/parsers/rst/states.py", line 882, in interpreted
# nodes[0][0].rawsource = unescape(text, True)
# AttributeError: 'str' object has no attribute 'rawsource' File "python3.6/site-packages/docutils/parsers/rst/states.py", line 882, in interpreted
# nodes[0][0].rawsource = unescape(text, True)
# AttributeError: 'str' object has no attribute 'rawsource'
docutils==0.14 # pyup: ignore

sphinx_rtd_theme==0.5.2
sphinx-tabs==2.1.0
sphinx-intl==2.0.1
Expand All @@ -25,8 +19,6 @@ sphinxemoji==0.1.8
sphinxcontrib-httpdomain==1.7.0
sphinx-prompt==1.4.0
sphinx-notfound-page==0.6
commonmark==0.9.1
recommonmark==0.7.1
sphinx-autobuild==2021.3.14

# Linting
Expand Down
8 changes: 4 additions & 4 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# Base packages

pip==21.1.1
virtualenv==20.4.4
virtualenv==20.4.6

django==2.2.20 # pyup: <2.3
django==2.2.22 # pyup: <2.3
django-extensions==3.1.3
django_polymorphic==3.0.0
django-autoslug==1.9.8

djangorestframework==3.12.4

# For intersphinx during builds
Sphinx==3.5.4
Sphinx==4.0.0

# Filtering for the REST API
django-filter==2.4.0

drf-flex-fields==0.9.0
drf-extensions==0.7.0

django-vanilla-views==2.0.0
django-vanilla-views==3.0.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is just removing support for old versions of django and python.

jsonfield==3.1.0

requests==2.25.1
Expand Down
4 changes: 2 additions & 2 deletions requirements/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-r pip.txt

django-dynamic-fixture==3.1.1
pytest==6.2.3
pytest==6.2.4
pytest-custom-exit-code==0.3.0
pytest-django==4.2.0
pytest-xdist==2.2.1
Expand All @@ -20,7 +20,7 @@ execnet==1.8.0
Mercurial==4.4.2 # pyup: ignore

yamale==2.2.0 # pyup: <3.0
pytest-mock==3.6.0
pytest-mock==3.6.1

# local debugging tools
datadiff==2.0.0
Expand Down