Olaf Meeuwissen
Olaf Meeuwissen
Adding `sphinxcontrib.versioning.sphinx_` to the `extensions` array in `conf.py` fixes the hang with this caveat that you can only build documentation for versions that do. If you try to build (older)...
I'm aware of your work around but that doesn't solve thing for documentation versions that have already been committed and pushed :cry:
@fmmix I got the same error when accidently running `sphinx-build` instead of `sphinx-versioning`.
@GlitchyPSIX I've resorted to conditionally added the extension based on an environment variable. Since I normally only want to run `sphinx-versionsing` in CI (and `sphinx-build` during "development" of the documentation),...
I suspect the migration that adds your `Meal` record to the database schema is using `"USD"`. This can happen if you set the default currency after creating and running the...
``` console > satisfies('1.1.1', '1') false > satisfies('1.1.1', '1.x') false > satisfies('1.1.1', '1.1.x') true > satisfies('1.1.1', '1.x.x') true ``` :thinking: `npm` thinks all of these are true.