dwavesystems / dwave-networkx

D-Wave Systems extension of the NetworkX Python package for graphs and graph algorithms.
https://docs.ocean.dwavesys.com/projects/dwave-networkx/en/latest
Apache License 2.0
89 stars 56 forks source link

Update cookie methods in conf.py #196

Closed JoelPasvolsky closed 3 years ago

JoelPasvolsky commented 3 years ago

app.add_stylesheet() and app.add_javascript() were renamed in version 1.8 and obsoleted in version 4

JoelPasvolsky commented 3 years ago

Failure of test-linux-3.6 unrelated to this PR

randomir commented 3 years ago

Haha, test-linux-3.6 is failing for a funny reason. Or, should I say for a confluence of reasons:

1) dependencies are not cached, so full install is attempted

2) one of dependencies, cryptography dropped manylinux1 wheels (since our last successful build around Dec 2020), so pip 19+ is required to install from a manylinux2010 wheel

3) the line to upgrade pip in our config.yaml: pip install -U pip setuptools wheel twine also upgrades twine using the current/old pip, hence it fails.

Fix: split the pip upgrade line into two.