asyncpg icon indicating copy to clipboard operation
asyncpg copied to clipboard

Drop `[project]` from `pyproject.toml` for forward-compatibility

Open Rongronggg9 opened this issue 2 years ago • 3 comments

https://github.com/MagicStack/asyncpg/pull/900#issuecomment-1079653458

As @abravalheri advised, it is better to drop the [project] table from pyproject.toml to avoid the future releases of setuptools ignoring the configurations listed in setup.py.

Rongronggg9 avatar Mar 26 '22 19:03 Rongronggg9

any update on this review?

I have problem with building my docker because of this section.

bszema avatar May 19 '22 08:05 bszema

@bszema Upgrade setuptools before installing asyncpg should help. However, it is just a temporary workaround as documented in https://github.com/pypa/setuptools/pull/3218.

pip install --no-cache-dir --upgrade pip setuptools wheel

Rongronggg9 avatar May 19 '22 10:05 Rongronggg9

@bszema Upgrade setuptools before installing asyncpg should help. However, it is just a temporary workaround as documented in pypa/setuptools#3218.

pip install --no-cache-dir --upgrade pip setuptools wheel

thanks a lot that helped!

bszema avatar May 19 '22 10:05 bszema

Fixed by #1045

elprans avatar Oct 09 '23 17:10 elprans