Changelog: - Use standard pypi_name and pypi_source macros - Update Summary to match upstream - Use HTTPS in upstream URL - License is now MIT-only - Remove explicit Requires - Remove Sphinx docs generation (rhbz#1690057) - Drop double listing of python3/LICENSE file - Patch tests for latest apipkg (rhbz#1690057) Resolves: rhbz#1690057epel9
parent
3c684063fd
commit
4b61664f94
@ -0,0 +1,29 @@
|
|||||||
|
From f40ed2b844f888f0c745a8dd1a66801b30d38d27 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Anthony Sottile <asottile@umich.edu>
|
||||||
|
Date: Thu, 5 Jul 2018 15:14:35 -0700
|
||||||
|
Subject: [PATCH] Don't copy apipkg into the test dir -- it isn't a single file
|
||||||
|
any more
|
||||||
|
|
||||||
|
---
|
||||||
|
testing/test_termination.py | 2 --
|
||||||
|
1 file changed, 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/testing/test_termination.py b/testing/test_termination.py
|
||||||
|
index 7320cdf..ae905d4 100644
|
||||||
|
--- a/testing/test_termination.py
|
||||||
|
+++ b/testing/test_termination.py
|
||||||
|
@@ -1,6 +1,5 @@
|
||||||
|
import pytest
|
||||||
|
import execnet
|
||||||
|
-import apipkg
|
||||||
|
import subprocess
|
||||||
|
import py
|
||||||
|
import sys
|
||||||
|
@@ -76,7 +75,6 @@ def test_close_initiating_remote_no_error(testdir, anypython):
|
||||||
|
print ("termination")
|
||||||
|
execnet.default_group.terminate()
|
||||||
|
""")
|
||||||
|
- testdir.makepyfile(apipkg=apipkg)
|
||||||
|
popen = subprocess.Popen(
|
||||||
|
[str(anypython), str(p), str(execnetdir)],
|
||||||
|
stdout=None, stderr=subprocess.PIPE,)
|
@ -0,0 +1,27 @@
|
|||||||
|
From 7424eab7dec61431646d050d87fd4c88a0bf69aa Mon Sep 17 00:00:00 2001
|
||||||
|
From: Ken Dreyer <kdreyer@redhat.com>
|
||||||
|
Date: Mon, 18 Mar 2019 14:25:52 -0600
|
||||||
|
Subject: [PATCH] doc: use a list for html_sidebars
|
||||||
|
|
||||||
|
Sphinx 1.7 deprecated the use of a single string in html_sidebars, and
|
||||||
|
Sphinx 2.0 has dropped support for this altogether.
|
||||||
|
---
|
||||||
|
doc/conf.py | 4 +---
|
||||||
|
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/doc/conf.py b/doc/conf.py
|
||||||
|
index f904768..7c049fb 100644
|
||||||
|
--- a/doc/conf.py
|
||||||
|
+++ b/doc/conf.py
|
||||||
|
@@ -98,10 +98,8 @@ html_theme = 'sphinxdoc'
|
||||||
|
|
||||||
|
# html_index = 'index.html'
|
||||||
|
html_sidebars = {
|
||||||
|
- 'index': 'indexsidebar.html',
|
||||||
|
+ 'index': ['indexsidebar.html'],
|
||||||
|
}
|
||||||
|
-# 'basics': 'indexsidebar.html',
|
||||||
|
-# }
|
||||||
|
# html_additional_pages = {'index': 'index.html'}
|
||||||
|
|
||||||
|
# Theme options are theme-specific and customize the look and feel of a theme
|
Loading…
Reference in new issue