Skip to content

Commit 9d683ea

Browse files
committed
Doc is generated in py3 only. Removed unicode string
1 parent 04a8d00 commit 9d683ea

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ jobs:
1616
- python-version: 3.6
1717
tox-env: py36
1818
- python-version: 3.7
19-
tox-env: py37,docs,readme,black
19+
tox-env: py37,docs,readme
2020
- python-version: 3.8
2121
tox-env: py38
2222
- python-version: 3.9
2323
tox-env: py39
2424
- python-version: pypy3
2525
tox-env: pypy3
26+
- python-version: 3.7
27+
tox-env: black
2628
steps:
2729
- uses: actions/checkout@v2
2830
- name: Set up Python ${{ matrix.python-version }}

docs/conf.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141
master_doc = "index"
4242

4343
# General information about the project.
44-
project = u"Requests-OAuthlib"
45-
copyright = u"2014, Kenneth Reitz"
44+
project = "Requests-OAuthlib"
45+
copyright = "2014, Kenneth Reitz"
4646

4747
# The version info for the project you're documenting, acts as replacement for
4848
# |version| and |release|, also used in various other places throughout the
@@ -188,8 +188,8 @@
188188
(
189189
"index",
190190
"Requests-OAuthlib.tex",
191-
u"Requests-OAuthlib Documentation",
192-
u"Requests-OAuthlib Contributors",
191+
"Requests-OAuthlib Documentation",
192+
"Requests-OAuthlib Contributors",
193193
"manual",
194194
)
195195
]
@@ -223,8 +223,8 @@
223223
(
224224
"index",
225225
"requests-oauthlib",
226-
u"Requests-OAuthlib Documentation",
227-
[u"Requests-OAuthlib Contributors"],
226+
"Requests-OAuthlib Documentation",
227+
["Requests-OAuthlib Contributors"],
228228
1,
229229
)
230230
]
@@ -242,8 +242,8 @@
242242
(
243243
"index",
244244
"Requests-OAuthlib",
245-
u"Requests-OAuthlib Documentation",
246-
u"Requests-OAuthlib Contributors",
245+
"Requests-OAuthlib Documentation",
246+
"Requests-OAuthlib Contributors",
247247
"Requests-OAuthlib",
248248
"One line description of project.",
249249
"Miscellaneous",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,4 @@ commands=
3636
[testenv:black]
3737
basepython=python3.7
3838
deps=black
39-
commands=black --check .
39+
commands=black --check --diff .

0 commit comments

Comments
 (0)