Version 1.0.3

Fix fonts mixed-content
Fixed deprecation error collections.MutableMapping (python 3.10)
master
J. Fernando Sánchez 2 years ago
parent a0abbede49
commit c1e4e092a7

@ -23,7 +23,8 @@ import inspect
import copy import copy
from abc import ABCMeta from abc import ABCMeta
from collections import MutableMapping, namedtuple from collections import namedtuple
from collections.abc import MutableMapping
class BaseMeta(ABCMeta): class BaseMeta(ABCMeta):

@ -332,5 +332,5 @@ In Data Science and Advanced Analytics (DSAA),
</div> </div>
</div> </div>
</body> </body>
<link href='http://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'> <link href='//fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
</html> </html>

@ -14,7 +14,7 @@
# limitations under the License. # limitations under the License.
# #
from . import models, __version__ from . import models, __version__
from collections import MutableMapping from collections.abc import MutableMapping
import pprint import pprint
import pdb import pdb

Loading…
Cancel
Save