☮
☮
Perhaps it will solve poroblem Pylons/pyramid_jinja2#107
@ptallada Thanks! This is a very special case, it works quite as shown below: ``` python from sqlalchemy import Column, Integer, String, ForeignKey from sqlalchemy.orm import relationship from sqlalchemy.ext.declarative import...
The problem is in this code after compilation it raise error https://github.com/kvesteri/sqlalchemy-utils/blob/master/sqlalchemy_utils/compat.py#L3-L11 ```python if sys.version_info >= (3, 8): from importlib.metadata import metadata else: from importlib_metadata import metadata _sqlalchemy_version = tuple(...
Мне кажется sphinx-doc и readthedocs.io решает все выше писанные проблемы
Обычно делают так, создают прямо в репе папку `docs` в ней документация в разметке `rst` сгенерированная системой `sphinx-doc`. ReadTheDocs умеет после каждого коммита пересобирать документацию, также можно там выставлять версии...
I observed this problem at one user. I do not have Windows, but if I have time I will try to reproduce it on VM
@AntonOfTheWoods A little delay solves the problem ```python @app.websocket("/viewers", name="viewers_ws") async def events_ws(websocket: WebSocket): await websocket.accept() await run_until_first_complete( (viewers_ws_receiver, {"websocket": websocket}), (viewers_ws_sender, {"websocket": websocket}), ) my_lock = threading.Lock() async def...
You can do this by adding your own custom CSS file. **conf.py** ``` python html_static_path = ["_static"] html_css_files = ["my_styles.css"] ``` **my_styles.css** ``` my_styles.css div.documentwrapper { max-width: 70rem !important; }...