From 276e04b385aa4b567304e02ae40628ea4dc80992 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Thu, 14 Nov 2019 00:14:24 +0100 Subject: [PATCH] Switch documentation building to Python 3 This removes build-time dependency on Python 2, which is going away. --- Makefile | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e4e5129..08ff7e4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ SPHINXOPTS = -W -SPHINXBUILD = sphinx-build +SPHINXBUILD = python3 -m sphinx DOCDIR = doc DOCHTML = $(DOCDIR)/html DOCTREES = $(DOCDIR)/doctrees diff --git a/setup.py b/setup.py index aaaee63..b2b3001 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import os from setuptools import setup, Extension -- 2.39.5