Skip to content

Commit c2fca33

Browse files
committed
try again
1 parent b04f8d8 commit c2fca33

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

postdoc/building/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def build_documentation(output_type: OutputType = OutputType.html, doc_path: Pat
4848

4949
assert doc_path.exists(), f"{doc_path} does not exist in working directory {os.listdir(str(Path.cwd()))}"
5050

51-
print(f"[{PROJECT_NAME}] Making {output_type.value} documentation")
51+
print(f"[{PROJECT_NAME}] Making {output_type} documentation")
5252

5353
log_file = Path(tempfile.gettempdir()) / "sphinx-log"
5454

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
test = pytest
33

44
[bdist_wheel]
5-
python-tag = py36
5+
python-tag = py38
66

77
[metadata]
88
license_file = LICENSE.md

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from typing import List, Sequence
44

55

6-
def python_version_check(major: int = 3, minor: int = 7):
6+
def python_version_check(major: int = 3, minor: int = 8):
77
""" """
88
import sys
99

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37
2+
envlist = py38
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)