This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.7 | |
WORKDIR /tmp | |
COPY requirements.txt ./ | |
RUN apt-get update && apt-get install --yes time | |
RUN pip install -r requirements.txt | |
RUN pip install -U pip | |
RUN echo "This is the old resolver:" && time pip install -r requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
""" | |
Configuration of a `synonym` property via the mapper function actually | |
detects an existing property on the mapped class and blends this into | |
the propertyProxy it creates. | |
This is actually helpful but as of SQLAlchemy 1.3.4 this seems to be an | |
undocumented feature. | |
""" |