Rongrong

Results 136 comments of Rongrong

> seems based on commits vs PRs? Probably! The achievement history list all users who have ever committed to the PR, which makes me misunderstand the condition of obtaining it....

Maybe you could introduce a parameter to the Pair Extraordinaire obtainer script to control the number of coauthored users and recruit some volunteers who have not got Pair Extraordinaire for...

> Does the more explicit wording mean one could do 120 commits in one PR? thinking Yes, that's actually what https://github.com/nathanielop/achievements/blob/a31afebb3109ddaa4ecf6196fed8a51e5b266829/bin/pair-extraordinaire does, even from its initial version. But we just...

@MasterPi-2124 You have 21 (>=15) coauthored commits in https://github.com/MasterPi-2124/achievements/pull/42, which made you earn P-E x1. After merging 9 PRs with 1 coauthored commit each, you got P-E x2 with >=30...

Wait, I made a mistake. https://github.com/MasterPi-2124/achievements/pull/42 with 21 coauthored commits only made @MasterPi-2124 earn P-E x1, and the condition of earning x1 should be 1 coauthored commit (instead of 15,...

> @Rongronggg9 [This](https://github.com/MasterPi-2124/achievements/pull/89) marked my P-E x3. @MasterPi-2124 I count your PRs. https://github.com/MasterPi-2124/achievements/pull/42 contains 21 coauthored-with-1-person commits. 19 PRs contain 1 coauthored-with-1-person commit each. 5 PRs (`#85-89`) contain 1 coauthored-with-2-person...

@nathanielop I noticed that @achiev3 and you share the same email domain. As a reminder, if that account is yours, this may violate the ToS of GitHub: > One person...

@long2ice Any news on this issue? I am facing exactly the same* issue even **nothing is wrapped with `in_transaction`**. *: ``` Traceback (most recent call last): File "/opt/venv/lib/python3.10/site-packages/tortoise/models.py", line 1056,...

Without `in_transaction`, the issue can still be reproduced easily: ```diff import asyncio import logging from test_models import TestModel from tortoise import Tortoise from tortoise.transactions import in_transaction logging.basicConfig() logging.getLogger().setLevel(0) async def...

@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. ```sh pip install --no-cache-dir --upgrade pip setuptools wheel ```