Skip to content

Lock file maintenance#9

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/lock-file-maintenance
Open

Lock file maintenance#9
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/lock-file-maintenance

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Feb 23, 2026

This PR contains the following updates:

Update Change
lockFileMaintenance All locks refreshed

🔧 This Pull Request updates lock files to use the latest dependency versions.


Configuration

📅 Schedule: (in timezone UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 23, 2026

❌ 2 Tests Failed:

Tests completed Failed Passed Skipped
6 2 4 0
View the top 3 failed test(s) by shortest run time
tests/test_all.py::test_deep_copy
Stack Traces | 0.021s run time
def test_deep_copy():
>       tx_data = tron.get_transaction("29e7d53e7b1463d354d1d7d90172fba89673e7bc5b0c7c441c14152a897ee363")
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_all.py:26: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.venv/lib/python3.13.../site-packages/tronpy/tron.py:925: in get_transaction
    ret = self.provider.make_request("wallet/gettransactionbyid", {"value": txn_id, "visible": True})
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.13.../tronpy/providers/http.py:89: in make_request
    resp.raise_for_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <Response [503]>

    def raise_for_status(self) -> None:
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 <= self.status_code < 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 <= self.status_code < 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
>           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://api.nileex.io/wallet/gettransactionbyid

.venv/lib/python3.13.../site-packages/requests/models.py:1167: HTTPError
tests/test_all.py::test_tx_size_works[293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1-346]
Stack Traces | 0.021s run time
tx_hash = '293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1'
size = 346

    @pytest.mark.parametrize(
        "tx_hash,size",
        [
            ["29e7d53e7b1463d354d1d7d90172fba89673e7bc5b0c7c441c14152a897ee363", 267],
            ["546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc", 283],
            ["cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764", 314],
            ["293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1", 346],
            ["9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a", 345],
        ],
    )
    def test_tx_size_works(tx_hash, size):
>       tx_data = tron.get_transaction(tx_hash)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_all.py:20: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.venv/lib/python3.13.../site-packages/tronpy/tron.py:925: in get_transaction
    ret = self.provider.make_request("wallet/gettransactionbyid", {"value": txn_id, "visible": True})
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.13.../tronpy/providers/http.py:89: in make_request
    resp.raise_for_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <Response [503]>

    def raise_for_status(self) -> None:
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 <= self.status_code < 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 <= self.status_code < 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
>           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://api.nileex.io/wallet/gettransactionbyid

.venv/lib/python3.13.../site-packages/requests/models.py:1167: HTTPError
tests/test_all.py::test_tx_size_works[9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a-345]
Stack Traces | 0.022s run time
tx_hash = '9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a'
size = 345

    @pytest.mark.parametrize(
        "tx_hash,size",
        [
            ["29e7d53e7b1463d354d1d7d90172fba89673e7bc5b0c7c441c14152a897ee363", 267],
            ["546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc", 283],
            ["cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764", 314],
            ["293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1", 346],
            ["9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a", 345],
        ],
    )
    def test_tx_size_works(tx_hash, size):
>       tx_data = tron.get_transaction(tx_hash)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_all.py:20: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.venv/lib/python3.11.../site-packages/tronpy/tron.py:925: in get_transaction
    ret = self.provider.make_request("wallet/gettransactionbyid", {"value": txn_id, "visible": True})
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.11.../tronpy/providers/http.py:89: in make_request
    resp.raise_for_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <Response [503]>

    def raise_for_status(self) -> None:
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 <= self.status_code < 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 <= self.status_code < 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
>           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://api.nileex.io/wallet/gettransactionbyid

.venv/lib/python3.11.../site-packages/requests/models.py:1167: HTTPError
tests/test_all.py::test_tx_size_works[cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764-314]
Stack Traces | 0.022s run time
tx_hash = 'cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764'
size = 314

    @pytest.mark.parametrize(
        "tx_hash,size",
        [
            ["29e7d53e7b1463d354d1d7d90172fba89673e7bc5b0c7c441c14152a897ee363", 267],
            ["546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc", 283],
            ["cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764", 314],
            ["293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1", 346],
            ["9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a", 345],
        ],
    )
    def test_tx_size_works(tx_hash, size):
>       tx_data = tron.get_transaction(tx_hash)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_all.py:20: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.venv/lib/python3.11.../site-packages/tronpy/tron.py:925: in get_transaction
    ret = self.provider.make_request("wallet/gettransactionbyid", {"value": txn_id, "visible": True})
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.11.../tronpy/providers/http.py:89: in make_request
    resp.raise_for_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <Response [503]>

    def raise_for_status(self) -> None:
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 <= self.status_code < 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 <= self.status_code < 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
>           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://api.nileex.io/wallet/gettransactionbyid

.venv/lib/python3.11.../site-packages/requests/models.py:1167: HTTPError
tests/test_all.py::test_tx_size_works[546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc-283]
Stack Traces | 0.024s run time
tx_hash = '546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc'
size = 283

    @pytest.mark.parametrize(
        "tx_hash,size",
        [
            ["29e7d53e7b1463d354d1d7d90172fba89673e7bc5b0c7c441c14152a897ee363", 267],
            ["546b52f2fe19955ba57cd431752e0e290d33a3b1670d1ad0820eb765110295bc", 283],
            ["cd0fc9dbe9999c7beee2cee0bcd1af39bd797802d85af4e35ded9adddcd9d764", 314],
            ["293f00a9f5415617a9889218ffed86f1d2bf78552557d2562eaa3358160c43c1", 346],
            ["9c533f0257397642f10573676f0769b5d58d68c767c661fbf9405a032a55cb6a", 345],
        ],
    )
    def test_tx_size_works(tx_hash, size):
>       tx_data = tron.get_transaction(tx_hash)
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

tests/test_all.py:20: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
.venv/lib/python3.13.../site-packages/tronpy/tron.py:925: in get_transaction
    ret = self.provider.make_request("wallet/gettransactionbyid", {"value": txn_id, "visible": True})
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
.venv/lib/python3.13.../tronpy/providers/http.py:89: in make_request
    resp.raise_for_status()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <Response [503]>

    def raise_for_status(self) -> None:
        """Raises :class:`HTTPError`, if one occurred."""
    
        http_error_msg = ""
        if isinstance(self.reason, bytes):
            # We attempt to decode utf-8 first because some servers
            # choose to localize their reason strings. If the string
            # isn't utf-8, we fall back to iso-8859-1 for all other
            # encodings. (See PR #3538)
            try:
                reason = self.reason.decode("utf-8")
            except UnicodeDecodeError:
                reason = self.reason.decode("iso-8859-1")
        else:
            reason = self.reason
    
        if 400 <= self.status_code < 500:
            http_error_msg = (
                f"{self.status_code} Client Error: {reason} for url: {self.url}"
            )
    
        elif 500 <= self.status_code < 600:
            http_error_msg = (
                f"{self.status_code} Server Error: {reason} for url: {self.url}"
            )
    
        if http_error_msg:
>           raise HTTPError(http_error_msg, response=self)
E           requests.exceptions.HTTPError: 503 Server Error: Service Unavailable for url: https://api.nileex.io/wallet/gettransactionbyid

.venv/lib/python3.13.../site-packages/requests/models.py:1167: HTTPError

To view more test analytics, go to the Prevent Tests Dashboard

@renovate renovate Bot force-pushed the renovate/lock-file-maintenance branch from c706246 to 2612d88 Compare March 16, 2026 01:09
@renovate renovate Bot added the type: chore label May 25, 2026
@renovate renovate Bot force-pushed the renovate/lock-file-maintenance branch from 2612d88 to 7784d82 Compare May 25, 2026 01:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants