Hirokazu Takaya
Hirokazu Takaya
Dear @youknowone , I'm sorry, but I couldn't find the solution in my project. Please clarify the solution with the example codes I used in the previous comment.
Thank you for your help.
Netlify provides environment to deploy multiple branches. https://www.netlify.com/
[pylons_sphinx_latesturl](https://github.com/Pylons/pylons_sphinx_latesturl) extension may solve the issue, but not maintained at this time.
[Read the Docs](https://readthedocs.org/) also solve the issue. However, the url of documentation will be changed.
This is related to #1228.
`pandas` version 1.5.1 was released. https://github.com/pandas-dev/pandas/releases/tag/v1.5.1
Per [SemVer](https://semver.org/) and [PEP440](https://peps.python.org/pep-0440/), we can use "developmental release". - 2.28.0 - 3.0.0.dev0 - 3.0.0.dev1 - ... - 3.0.0 - 3.0.1-dev0 - 3.0.1 - 3.1.0-dev0 - ...
Show currently install versions of target library and its dependencies: ```Python from importlib.metadata import distribution, requires from pprint import pprint target = "covsirphy" dependencies = [target] + [r[:r.find(" (")] for...
Python version and OS: ```Python import platform platform.python_version() platform.platform() ```