daffidwilde / matching

A package for solving matching games
https://daffidwilde.github.io/matching/
MIT License
150 stars 42 forks source link

Docs aren't building correctly. #104

Closed daffidwilde closed 4 years ago

daffidwilde commented 4 years ago

Despite the changes in #103, the documentation still does not build correctly. I've been attempting manual wipes on readthedocs.org but there is no consistency.

daffidwilde commented 4 years ago

The issue seems to be that sphinx or readthedocs is using multiple versions of the docs files. For instance, the home page refers to 77a0a1e but if you navigate to the index page (should be the same as the home page) you are looking at a version from 8b9a2ed.

daffidwilde commented 4 years ago

Note that building locally does not cause this problem but also does not specify the commit ("Revision") for any page:

git clone https://github.com/daffidwilde/matching.git
cd matching
conda create --file docs/environment.yml
conda activate matching-docs
sphinx-build -b html docs docs/_build/html
mgeier commented 4 years ago

Are you sure this isn't just a matter of your browser cache? Did you hit "refresh"?

daffidwilde commented 4 years ago

Ah, I hadn't thought about my cache 😅

I had been loading/refreshing across multiple browsers on both my phone and laptop but I guess they all still had that version cached somewhere. Clearing everything out solved the issue and I'll close this now.

Thanks @mgeier!