forked from pool/python-exrex
- Skip Python 2. - run the tests. - remove add-license.patch, included in upstream OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-exrex?expand=0&rev=13
24 lines
591 B
Diff
24 lines
591 B
Diff
From 09a1ef0962268460f66084a992fee1aff77dc141 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Wagner <wagner@cert.at>
|
|
Date: Thu, 25 Feb 2021 21:03:56 +0100
|
|
Subject: [PATCH] setup.py: declare encoding as utf-8
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
the ellipsis (…) causes troubles otherwise on "old" python versions as
|
|
3.6
|
|
---
|
|
setup.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 29c5a87..475a86f 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -1,3 +1,4 @@
|
|
+# -*- coding: utf-8 -*-
|
|
import io
|
|
import os
|
|
import sys
|