Blame python-sphinxcontrib-bibtex-orderedset.patch

f754353
--- requirements.txt.orig	2018-12-08 11:30:14.633258651 -0700
f754353
+++ requirements.txt	2018-12-08 11:30:51.118169972 -0700
fecca62
@@ -2,5 +2,5 @@ pybtex>=0.20
e181803
 pybtex>=0.20
d046a07
 pybtex-docutils>=0.2.0
e181803
 Sphinx>=2.0
d046a07
-oset>=0.1.3
d046a07
+orderedset>=2.0
d046a07
 
f754353
--- sphinxcontrib/bibtex/cache.py.orig	2018-11-28 06:47:17.000000000 -0700
f754353
+++ sphinxcontrib/bibtex/cache.py	2018-12-08 11:30:14.633258651 -0700
e82ea3f
@@ -24,7 +24,7 @@ except ImportError:  # pragma: no cover
d046a07
 import ast
d046a07
 import collections
d046a07
 import copy
d046a07
-from oset import oset
d046a07
+from orderedset import OrderedSet
d046a07
 import re
d046a07
 
d046a07
 
e82ea3f
@@ -200,7 +200,7 @@ class Cache:
d046a07
 
d046a07
         self.bibfiles = {}
d046a07
         self._bibliographies = collections.defaultdict(dict)
d046a07
-        self._cited = collections.defaultdict(oset)
d046a07
+        self._cited = collections.defaultdict(OrderedSet)
d046a07
         self._enum_count = {}
d046a07
 
d046a07
     def purge(self, docname):