瀏覽代碼

Set python_requires in setup.py to ">= 3.4"

In addition to replacing the manual version check, this will also
instruct pip to download an older version of mwparserfromhell for
users running earlier Python versions rather than just getting something
broken.
tags/v0.6
Kunal Mehta 4 年之前
父節點
當前提交
91ed26d864
共有 1 個檔案被更改,包括 1 行新增3 行删除
  1. +1
    -3
      setup.py

+ 1
- 3
setup.py 查看文件

@@ -25,9 +25,6 @@ from glob import glob
from os import environ
import sys

if sys.version_info[1] == 3 and sys.version_info[1] < 4:
raise RuntimeError("mwparserfromhell needs 3.4+")

from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext

@@ -80,6 +77,7 @@ setup(
ext_modules = [tokenizer] if use_extension else [],
test_suite = "tests",
version = __version__,
python_requires = ">= 3.4",
author = "Ben Kurtovic",
author_email = "ben.kurtovic@gmail.com",
url = "https://github.com/earwig/mwparserfromhell",


Loading…
取消
儲存