Skip to content

Commit

Permalink
Fix compatibility with the latest apeye versions
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Jun 16, 2021
1 parent 0f442a6 commit eeae510
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apeye>=0.0.4
apeye[limiter]>=0.6.0
autodocsumm>=0.2.0
beautifulsoup4>=4.9.1
consolekit>=0.3.1
Expand Down
2 changes: 1 addition & 1 deletion sphinx_toolbox/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from typing import List, Union

# 3rd party
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from domdf_python_tools.stringlist import StringList
from sphinx.application import Sphinx
from sphinx.config import Config
Expand Down
2 changes: 1 addition & 1 deletion sphinx_toolbox/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

# 3rd party
import sphinx.config
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from docutils.nodes import Node
from domdf_python_tools.doctools import prettify_docstrings
from sphinx.application import Sphinx
Expand Down
2 changes: 1 addition & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 3rd party
import pytest
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL

# this package
from sphinx_toolbox.config import InvalidOptionError, MissingOptionError, validate_config
Expand Down
2 changes: 1 addition & 1 deletion tests/test_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# 3rd party
import docutils.nodes
import pytest
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from coincidence.params import count
from docutils import nodes
from docutils.utils import Reporter
Expand Down
2 changes: 1 addition & 1 deletion tests/test_issues.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 3rd party
import pytest
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from coincidence.params import count
from deprecation import fail_if_not_removed # type: ignore
from docutils.nodes import system_message
Expand Down
2 changes: 1 addition & 1 deletion tests/test_output/instancevar.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import Union

# 3rd party
from apeye.url import SlumberURL
from apeye.slumber_url import SlumberURL
from domdf_python_tools.secrets import Secret


Expand Down
2 changes: 1 addition & 1 deletion tests/test_source.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# 3rd party
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from docutils.nodes import inline, reference, system_message
from docutils.utils import Reporter
from sphinx import addnodes
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

# 3rd party
import pytest
from apeye.url import RequestsURL
from apeye.requests_url import RequestsURL
from domdf_python_tools.utils import strtobool
from hypothesis import given
from hypothesis.strategies import text
Expand Down

0 comments on commit eeae510

Please sign in to comment.