René's URL Explorer Experiment


Title: chore(deps-dev): bump the dev-dependencies group across 1 directory with 5 updates by dependabot[bot] · Pull Request #6 · RoxyAPI/sdk-python · GitHub

Open Graph Title: chore(deps-dev): bump the dev-dependencies group across 1 directory with 5 updates by dependabot[bot] · Pull Request #6 · RoxyAPI/sdk-python

X Title: chore(deps-dev): bump the dev-dependencies group across 1 directory with 5 updates by dependabot[bot] · Pull Request #6 · RoxyAPI/sdk-python

Description: Bumps the dev-dependencies group with 5 updates in the / directory: Package From To pytest 9.0.3 9.1.1 pytest-asyncio 1.3.0 1.4.0 mypy 1.20.2 2.1.0 ruff 0.15.11 0.15.20 lefthook 2.1.6 2.1.9 Updates pytest from 9.0.3 to 9.1.1 Release notes Sourced from pytest's releases. 9.1.1 pytest 9.1.1 (2026-06-19) Bug fixes #14220: Fixed a logic bug in pytest.RaisesGroup which would might cause it to display incorrect "It matches FooError() which was paired with BarError" messages. #14591: Fixed a regression in pytest 9.1.0 which caused overriding a parametrized fixture with an indirect @​pytest.mark.parametrize to fail with "duplicate parametrization of ''". #14606: Fixed list-item typing errors from mypy in @pytest.mark.parametrize argvalues parameter. #14608: Fixed a regression in pytest 9.1.0 where conftest.py files located in /test* were no longer loaded as initial conftests when invoked without arguments. This could cause certain hooks (like pytest_addoption) in these files to not fire. 9.1.0 pytest 9.1.0 (2026-06-13) Removals and backward incompatible breaking changes #14533: When using --doctest-modules, autouse fixtures with module, package or session scope that are defined inline in Python test modules (not plugins or conftests) will now possibly execute twice. If this is undesirable, move the fixture definition to a conftest.py file if possible. Technical explanation for those interested: When using --doctest-modules, pytest possibly collects Python modules twice, once as pytest.Module and once as a DoctestModule (depending on the configuration). Due to improvements in pytest's fixture implementation, if e.g. the DoctestModule collects a fixture, it is now visible to it only, and not to the Module. This means that both need to register the fixtures independently. Deprecations (removal in next major release) #10819: Added a deprecation warning for class-scoped fixtures defined as instance methods (without @classmethod). Such fixtures set attributes on a different instance than the test methods use, leading to unexpected behavior. Use @classmethod decorator instead -- by yastcher. See 10819 and 14011. #12882: Calling request.getfixturevalue() during teardown to request a fixture that was not already requested is now deprecated and will become an error in pytest 10. See dynamic-fixture-request-during-teardown for details. #13409: Using non-~collections.abc.Collection iterables (such as generators, iterators, or custom iterable objects) for the argvalues parameter in @pytest.mark.parametrize and metafunc.parametrize is now deprecated. These iterables get exhausted after the first iteration, leading to tests getting unexpectedly skipped in cases such as running pytest.main() multiple times, using class-level parametrize decorators, or collecting tests multiple times. See parametrize-iterators for details and suggestions. #13946: The private config.inicfg attribute is now deprecated. Use config.getini() to access configuration values instead. See config-inicfg for more details. #14004: Passing baseid to ~pytest.FixtureDef or nodeid strings to fixture registration APIs is now deprecated. These are internal pytest APIs that are used by some plugins. ... (truncated) Commits cf470ec Prepare release version 9.1.1 e0c8ce6 Merge pull request #14625 from pytest-dev/patchback/backports/9.1.x/a07c31a97... 1b82d16 Merge pull request #14624 from pytest-dev/patchback/backports/9.1.x/b375b79ec... 501c4bc Merge pull request #14596 from bluetech/doc-classmethod b61f588 Merge pull request #14622 from chrisburr/fix-14608-initial-conftest-test-subdir 9a567e0 [automated] Update plugin list (#14617) (#14618) ef8b299 Merge pull request #14620 from pytest-dev/patchback/backports/9.1.x/680f9f3ed... 66abd07 Merge pull request #14220 from bysiber/fix-stale-iexp-raisesgroup 79fbf93 Merge pull request #14612 from pytest-dev/patchback/backports/9.1.x/974ed48b6... 0d312eb Merge pull request #14611 from bluetech/parametrize-argvalues-typing Additional commits viewable in compare view Updates pytest-asyncio from 1.3.0 to 1.4.0 Release notes Sourced from pytest-asyncio's releases. pytest-asyncio v1.4.0 1.4.0 - 2026-05-26 Deprecated Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419) Added Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories. The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged. Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164) Changed Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298) Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394) Updated minimum supported pytest version to v8.4.0. (#1397) Fixed Fixed a ResourceWarning: unclosed event loop warning that could occur when a synchronous test called asyncio.run() or otherwise unset the current event loop after pytest-asyncio had run an async test or fixture. (#724) Notes for Downstream Packagers Added dependency on sphinx-tabs >= 3.5 to organize documentation examples into tabs. (#1395) pytest-asyncio v1.4.0a2 1.4.0a2 - 2026-05-02 Deprecated Overriding the event_loop_policy fixture is deprecated. Use the pytest_asyncio_loop_factories hook instead. (#1419) Added Added the pytest_asyncio_loop_factories hook to parametrize asyncio tests with custom event loop factories. The hook returns a mapping of factory names to loop factories, and pytest.mark.asyncio(loop_factories=[...]) selects a subset of configured factories per test. When a single factory is configured, test names are unchanged on pytest 8.4+. Synchronous @pytest_asyncio.fixture functions now see the correct event loop when custom loop factories are configured, even when test code disrupts the current event loop (e.g., via asyncio.run() or asyncio.set_event_loop(None)). (#1164) Changed Improved the readability of the warning message that is displayed when asyncio_default_fixture_loop_scope is unset (#1298) Only import asyncio.AbstractEventLoopPolicy for type checking to avoid raising a DeprecationWarning. (#1394) ... (truncated) Commits 6e14cd2 chore: Prepare release of v1.4.0. 4b900fb Build(deps): Bump codecov/codecov-action from 6.0.0 to 6.0.1 ab9f632 Build(deps): Bump zipp from 3.23.1 to 4.1.0 a56fc77 Build(deps): Bump hypothesis from 6.152.6 to 6.152.8 e8bae9b Build(deps): Bump requests from 2.34.0 to 2.34.2 fc43340 Build(deps): Bump idna from 3.14 to 3.15 762eaf5 Build(deps): Bump jaraco-functools from 4.4.0 to 4.5.0 b62e222 Build(deps): Bump click from 8.3.3 to 8.4.0 9190447 Build(deps): Bump pydantic from 2.13.3 to 2.13.4 82a393c ci: Remove unnecessary debug output. Additional commits viewable in compare view Updates mypy from 1.20.2 to 2.1.0 Changelog Sourced from mypy's changelog. Mypy Release Notes Next Release Mypy 2.1 We’ve just uploaded mypy 2.1.0 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements and bug fixes. You can install it as follows: python3 -m pip install -U mypy You can read the full documentation for this release on Read the Docs. librt.vecs: Fast Growable Array Type for Mypyc The new librt.vecs module provides an efficient growable array type vec that is optimized for mypyc use. It provides fast, packed arrays with integer and floating point value types, which can be several times faster than list, and tens of times faster than array.array in code compiled using mypyc. It also supports nested vec objects and non-value-type items, such as vec[vec[str]]. Refer to the documentation for the details. Contributed by Jukka Lehtosalo. librt.random: Fast Pseudo-Random Number Generation The new librt.random module provides fast pseudo-random number generation that is optimized for code compiled using mypyc. It can be 3x to 10x faster than the stdlib random module in compiled code. Refer to the documentation for the details. Contributed by Jukka Lehtosalo (PR 21433). Mypyc Improvements Enable incremental self-compilation (Vaggelis Danias, PR 21369) Make compilation order with multiple files consistent (Piotr Sawicki, PR 21419) Fix crash on accessing StopAsyncIteration (Piotr Sawicki, PR 21406) Fix incremental compilation with separate flag (Vaggelis Danias, PR 21299) Fixes to Crashes Fix crash on partial type with --allow-redefinition and global declaration (Jukka Lehtosalo, PR 21428) Fix broken awaitable generator patching (Ivan Levkivskyi, PR 21435) ... (truncated) Commits c1c336d Remove +dev from version 74df14b Add changelog for mypy 2.1 (#21464) 022d9bc Revert "TypeForm: Enable by default (#21262)" 8826288 [mypyc] Document librt.random (#21463) 3f4067b Bump librt version to 0.11.0 (#21458) 2b1eb58 [mypyc] Enable incremental self-compilation (#21369) 8152f4a Respect file config comments for stale modules (#21444) 116d60b Fix nondeterminism from nonassociativity of overload joins (#21455) 6c4af8e Fix function call message change for small number of args (#21432) 4b8fdca [mypyc] Add librt.random module (#21433) Additional commits viewable in compare view Updates ruff from 0.15.11 to 0.15.20 Release notes Sourced from ruff's releases. 0.15.20 Release Notes Released on 2026-06-25. Preview features Allow human-readable names in rule selectors (#25887) Emit a warning instead of an error for unknown rule selectors (#26113) Match noqa shebang handling in ruff:ignore comments (#26286) [ruff] Remove pytest-fixture-autouse (RUF076) (#26240, #26371) Documentation Add versioning sections to custom crate READMEs (#26317) Update ruff_python_parser README for crates.io (#26315) [perflint] Clarify that PERF402 applies to any iterable (#26242) Contributors @​dhruvmanila @​MichaReiser @​ntBre @​trilamsr Install ruff 0.15.20 Install prebuilt binaries via shell script curl --proto '=https' --tlsv1.2 -LsSf https://releases.astral.sh/github/ruff/releases/download/0.15.20/ruff-installer.sh | sh Install prebuilt binaries via powershell script powershell -ExecutionPolicy Bypass -c "irm https://releases.astral.sh/github/ruff/releases/download/0.15.20/ruff-installer.ps1 | iex" Download ruff 0.15.20 File Platform Checksum ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum ruff-aarch64-pc-windows-msvc.zip ARM64 Windows checksum ruff-i686-pc-windows-msvc.zip x86 Windows checksum ruff-x86_64-pc-windows-msvc.zip x64 Windows checksum ruff-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum ruff-i686-unknown-linux-gnu.tar.gz x86 Linux checksum ... (truncated) Changelog Sourced from ruff's changelog. 0.15.20 Released on 2026-06-25. Preview features Allow human-readable names in rule selectors (#25887) Emit a warning instead of an error for unknown rule selectors (#26113) Match noqa shebang handling in ruff:ignore comments (#26286) [ruff] Remove pytest-fixture-autouse (RUF076) (#26240, #26371) Documentation Add versioning sections to custom crate READMEs (#26317) Update ruff_python_parser README for crates.io (#26315) [perflint] Clarify that PERF402 applies to any iterable (#26242) Contributors @​dhruvmanila @​MichaReiser @​ntBre @​trilamsr 0.15.19 Released on 2026-06-23. Preview features Support human-readable names when hovering suppression comments and in code actions (#26114) Bug fixes Fall back to default settings when editor-only settings are invalid (#26244) Fix panic when inserting text at a notebook cell boundary (#26111) Rule changes [pylint] Update fix suggestions for __floor__, __trunc__, __length_hint__, and __matmul__ variants (PLC2801) (#26239) Performance Avoid allocating when parsing single string literals (#26200) Avoid reallocating singleton call arguments (#26223) Lazily create source files for lint diagnostics (#26226) Optimize formatter text width and indentation (#26236) Reserve capacity for builtin bindings (#26229) Skip repeated-key checks for singleton dictionaries (#26228) Use ArrayVec for qualified name segments (#26224) ... (truncated) Commits f82a36b Bump 0.15.20 (#26376) af32943 Improve the summarise-ecosystem-results skill (#26378) 485ebab Remove RUF076 name from schema (#26371) ef81835 [ty] Implement rust-analyzer's "Click for full compiler diagnostic" feature (... 572b31e [ruff] Remove pytest-fixture-autouse (RUF076) (#26240) f703f21 Allow human-readable names in rule selectors (#25887) 0d726b2 [ty] Reuse equality semantics for membership compatibility (#25955) dbe6e98 [ty] Infer definite equality comparison results (#26337) e700ea3 [ty] Prove TypedDict structural patterns exhaustive (#26285) 6a0d2ec [ty] Widen inferred class-valued instance attributes (#26338) Additional commits viewable in compare view Updates lefthook from 2.1.6 to 2.1.9 Release notes Sourced from lefthook's releases. v2.1.9 Changelog 1d35cbabe1ebaf2a5ed4d2186caa0402de6448e2 chore: add pretty gradient (#1432) 22be6c50e1412c748f3c6b60e9c61cd056dc693b deps: May 2026 (#1415) 1bae568f03dfb88af9185031fa44e9fee285e917 fix: update hooks path after resetting (#1431) v2.1.8 Changelog 488a5f99a5a496e5837f757f8ce3e6c6d1415792 fix: do not warn if local hooks path is equal to default hooks path (#1421) v2.1.7 Changelog f415a9d3fce1d4f6af62622cf96c72e04ecf7bd3 chore: go mod tidy cf4ab9ea4580f5aeb0d4b61d4dd169533e5bb0c9 fix: always restore unstaged changes (#1416) 4c0e000d6fe9f35f42efefb9263b0b4cb5dfbd49 fix: apply stage_fixed only if it is safe (#1418) 76aa843ef5ceb6970f61cd2ff28d16dd2ec82272 fix: linter, sacrifice optimization for readability 9d53c36ed9a26d3bf66e341a9650a0ecac9b6a37 fix: separate fallback push branch from pathspecs (#1396) 22c9f773cf93b59005bd244c5b00caab2947a755 fix: try to always restore unstaged changes (#1417) 37d83986d8e6d6bf6792f57e22e7cbb1a9e28064 fix: use contrast colors (#1420) eb1064d0b8c6248627960bea1abf6891db5a21b1 refactor: add new logger without a global state (#1385) Changelog Sourced from lefthook's changelog. 2.1.9 (2026-05-29) fix: update hooks path after resetting (#1431) by @​mrexox deps: May 2026 (#1415) by @​mrexox 2.1.8 (2026-05-19) fix: do not warn if local hooks path is equal to default hooks path (#1421) by @​mrexox 2.1.7 (2026-05-19) fix: use contrast colors (#1420) by @​mrexox fix: apply stage_fixed only if it is safe (#1418) by @​mrexox fix: try to always restore unstaged changes (#1417) by @​mrexox fix: always restore unstaged changes (#1416) by @​mrexox refactor: add new logger without a global state (#1385) by @​mrexox fix: linter, sacrifice optimization for readability by @​mrexox fix: separate fallback push branch from pathspecs (#1396) by @​lawrence3699 Commits 75f99ff 2.1.9: fix install with --reset-hooks-path 1d35cba chore: add pretty gradient (#1432) 1bae568 fix: update hooks path after resetting (#1431) 22be6c5 deps: May 2026 (#1415) 9e75b21 2.1.8: reduce warning for core.hooksPath if it matches the default 488a5f9 fix: do not warn if local hooks path is equal to default hooks path (#1421) b5c8310 2.1.7: restore unstaged changes when possible 37d8398 fix: use contrast colors (#1420) 4c0e000 fix: apply stage_fixed only if it is safe (#1418) 22c9f77 fix: try to always restore unstaged changes (#1417) Additional commits viewable in compare view

Open Graph Description: Bumps the dev-dependencies group with 5 updates in the / directory: Package From To pytest 9.0.3 9.1.1 pytest-asyncio 1.3.0 1.4.0 mypy 1.20.2 2.1.0 ruff 0.15.11 0.15.20 lefthook 2.1....

X Description: Bumps the dev-dependencies group with 5 updates in the / directory: Package From To pytest 9.0.3 9.1.1 pytest-asyncio 1.3.0 1.4.0 mypy 1.20.2 2.1.0 ruff 0.15.11 0.15.20 lefthook 2.1....

Opengraph URL: https://github.com/RoxyAPI/sdk-python/pull/6

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:9f58f337-147f-b6f7-2869-0486db10f1df
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9FBE:256945:B08D1D:F9046F:6A4CA273
html-safe-nonce5be8f720f34c17fd0600df9fd796a8c233d35313a77449b78bd002f5bf6f0752
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RkJFOjI1Njk0NTpCMDhEMUQ6RjkwNDZGOjZBNENBMjczIiwidmlzaXRvcl9pZCI6IjY2NjE1MTE5MTczMTAwOTE4OTEiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacf00a5ac3b1ff432c3e50c4ad71c01eecbe827ab401bcad6ebbc707fd24012d4d
hovercard-subject-tagpull_request:3876838819
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/RoxyAPI/sdk-python/pull/6/files
twitter:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/in/29110?s=400&v=4
og:image:altBumps the dev-dependencies group with 5 updates in the / directory: Package From To pytest 9.0.3 9.1.1 pytest-asyncio 1.3.0 1.4.0 mypy 1.20.2 2.1.0 ruff 0.15.11 0.15.20 lefthook 2.1....
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/RoxyAPI/sdk-python git https://github.com/RoxyAPI/sdk-python.git
octolytics-dimension-user_id185915295
octolytics-dimension-user_loginRoxyAPI
octolytics-dimension-repository_id1198453760
octolytics-dimension-repository_nwoRoxyAPI/sdk-python
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1198453760
octolytics-dimension-repository_network_root_nwoRoxyAPI/sdk-python
turbo-body-classeslogged-out env-production page-responsive
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/RoxyAPI/sdk-python/pull/6/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRoxyAPI%2Fsdk-python%2Fpull%2F6%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FRoxyAPI%2Fsdk-python%2Fpull%2F6%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=RoxyAPI%2Fsdk-python
Reloadhttps://github.com/RoxyAPI/sdk-python/pull/6/files
Reloadhttps://github.com/RoxyAPI/sdk-python/pull/6/files
Reloadhttps://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
RoxyAPI https://github.com/RoxyAPI
sdk-pythonhttps://github.com/RoxyAPI/sdk-python
Notifications https://github.com/login?return_to=%2FRoxyAPI%2Fsdk-python
Fork 1 https://github.com/login?return_to=%2FRoxyAPI%2Fsdk-python
Star 0 https://github.com/login?return_to=%2FRoxyAPI%2Fsdk-python
Code https://github.com/RoxyAPI/sdk-python
Issues 0 https://github.com/RoxyAPI/sdk-python/issues
Pull requests 0 https://github.com/RoxyAPI/sdk-python/pulls
Discussions https://github.com/RoxyAPI/sdk-python/discussions
Actions https://github.com/RoxyAPI/sdk-python/actions
Projects https://github.com/RoxyAPI/sdk-python/projects
Security and quality 0 https://github.com/RoxyAPI/sdk-python/security
Insights https://github.com/RoxyAPI/sdk-python/pulse
Code https://github.com/RoxyAPI/sdk-python
Issues https://github.com/RoxyAPI/sdk-python/issues
Pull requests https://github.com/RoxyAPI/sdk-python/pulls
Discussions https://github.com/RoxyAPI/sdk-python/discussions
Actions https://github.com/RoxyAPI/sdk-python/actions
Projects https://github.com/RoxyAPI/sdk-python/projects
Security and quality https://github.com/RoxyAPI/sdk-python/security
Insights https://github.com/RoxyAPI/sdk-python/pulse
Sign up for GitHub https://github.com/signup?return_to=%2FRoxyAPI%2Fsdk-python%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2FRoxyAPI%2Fsdk-python%2Fissues%2Fnew%2Fchoose
ph33nxhttps://github.com/ph33nx
mainhttps://github.com/RoxyAPI/sdk-python/tree/main
dependabot/uv/dev-dependencies-c065ed02c7https://github.com/RoxyAPI/sdk-python/tree/dependabot/uv/dev-dependencies-c065ed02c7
Conversation 0 https://github.com/RoxyAPI/sdk-python/pull/6
Commits 1 https://github.com/RoxyAPI/sdk-python/pull/6/commits
Checks 5 https://github.com/RoxyAPI/sdk-python/pull/6/checks
Files changed https://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
chore(deps-dev): bump the dev-dependencies group across 1 directory with 5 updates https://github.com/RoxyAPI/sdk-python/pull/6/files#top
Show all changes 1 commit https://github.com/RoxyAPI/sdk-python/pull/6/files
12b7502 chore(deps-dev): bump the dev-dependencies group across 1 directory w… dependabot[bot] Jun 30, 2026 https://github.com/RoxyAPI/sdk-python/pull/6/commits/12b7502fe2e85aa57a1016a777ff65bf236aba46
Clear filters https://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
Please reload this pagehttps://github.com/RoxyAPI/sdk-python/pull/6/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.