FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

upgrade python workflow fix again by youknowone · Pull Request #7136 · RustPython/RustPython · GitHub

upgrade python workflow fix again - #7136

Merged
youknowone merged 2 commits into
mainfrom
agent-wf
Feb 14, 2026
Merged

upgrade python workflow fix again#7136
youknowone merged 2 commits into
mainfrom
agent-wf

Conversation

youknowone commented Feb 14, 2026
edited by coderabbitai Bot
Loading

Copy link
Copy Markdown
Member

Summary by CodeRabbit

  • Documentation
    • Updated module upgrade workflow documentation with improved step clarity for determining the module name.
    • Added support for specifying a module name via environment variable in the upgrade process.
    • Enhanced guidance messages to assist users when the module name is not explicitly provided.

youknowone added the skip:ci Skip running the ci label Feb 14, 2026

coderabbitai Bot commented Feb 14, 2026
edited
Loading

Copy link
Copy Markdown
Contributor

Caution

Review failed

The pull request is closed.

📝 Walkthrough

Walkthrough

The workflow documentation Step 2 was revised to introduce MODULE_NAME environment variable handling with conditional logic that either derives the module name from the todo script output or uses an explicitly provided name.

Changes

Cohort / File(s) Summary
Workflow Documentation Update
.github/workflows/upgrade-pylib.md
Step 2 heading changed from "Pick a module to upgrade" to "Determine module name"; script rewritten to conditionally handle MODULE_NAME environment variable—if empty, runs todo script and prints guidance; if provided, echoes the specified module name.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Suggested reviewers

  • moreal

Poem

🐰 A workflow step refined with care,
MODULE_NAME now conditional and fair,
If empty, todo guides the way,
If set, we use it straightaway! ✨

✨ Finishing touches 🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch agent-wf

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

- Updated Lib/collections from CPython v3.14.3
- Preserved RustPython's fallback implementation for defaultdict
- Added test for update_reentrant_add_clears_counter
- Minor formatting fixes in test file

Co-authored-by: CPython Developers <>

Copy link
Copy Markdown
Contributor

📦 Library Dependencies

The following Lib/ modules were modified. Here are their dependencies:

[ ] lib: cpython/Lib/collections
[x] lib: cpython/Lib/_collections_abc.py
[x] test: cpython/Lib/test/test_collections.py (TODO: 3)
[x] test: cpython/Lib/test/test_deque.py (TODO: 3)
[x] test: cpython/Lib/test/test_defaultdict.py (TODO: 1)
[ ] test: cpython/Lib/test/test_ordered_dict.py (TODO: 4)

dependencies:

  • collections (native: _weakref, itertools, sys)
    • _collections_abc
    • _collections_abc, abc, keyword, operator, reprlib

dependent tests: (193 tests)

  • collections: test_annotationlib test_array test_asyncio test_bisect test_builtin test_c_locale_coercion test_call test_collections test_configparser test_contains test_csv test_ctypes test_defaultdict test_deque test_dict test_dictviews test_enum test_exception_group test_file test_fileinput test_fileio test_functools test_genericalias test_hash test_httpservers test_inspect test_io test_ipaddress test_iter test_iterlen test_json test_ordered_dict test_pathlib test_patma test_pickle test_plistlib test_pprint test_pydoc test_random test_set test_shelve test_sqlite3 test_statistics test_string test_struct test_traceback test_types test_typing test_unittest test_urllib test_userdict test_userlist test_userstring test_weakref test_weakset test_with
    • asyncio: test_asyncio test_contextlib_async test_logging test_os test_sys_settrace test_unittest
    • concurrent.futures._base: test_concurrent_futures
    • dbm.dumb: test_dbm_dumb
    • dbm.sqlite3: test_dbm_sqlite3
    • difflib: test_difflib
    • dis: test__opcode test_ast test_code test_compile test_compiler_assemble test_dis test_dtrace test_fstring test_opcache test_peepholer test_positional_only_arg
      • inspect: test_abc test_argparse test_asyncgen test_buffer test_coroutines test_decimal test_generators test_grammar test_ntpath test_operator test_posixpath test_signal test_type_annotations test_yield_from test_zipimport
      • trace: test_trace
    • http.client: test_docxmlrpc test_hashlib test_ssl test_ucn test_unicodedata test_urllib2 test_wsgiref test_xmlrpc
      • urllib.request: test_http_cookiejar test_site test_urllib2_localnet test_urllib2net test_urllibnet
    • importlib.metadata: test_importlib test_zoneinfo
    • inspect:
      • bdb: test_bdb
      • dataclasses: test__colorize test_regrtest
      • rlcompleter: test_rlcompleter
    • multiprocessing: test_concurrent_futures test_fcntl test_multiprocessing_main_handling
    • pkgutil: test_pkgutil
    • platform: test__locale test__osx_support test_android test_baseexception test_cmath test_ctypes test_math test_mimetypes test_platform test_posix test_socket test_sysconfig test_time test_winreg
    • pprint: test_htmlparser test_sys_setprofile
    • queue: test_concurrent_futures test_dummy_thread test_sched
    • selectors: test_selectors test_subprocess
      • socketserver: test_imaplib test_socketserver
    • shutil: test_bz2 test_compileall test_ctypes test_filecmp test_glob test_importlib test_largefile test_py_compile test_reprlib test_shutil test_string_literals test_support test_tempfile test_venv
      • ctypes.util: test_ctypes
      • ensurepip: test_ensurepip
      • tarfile: test_tarfile
      • tempfile: test_bytes test_cmd_line test_contextlib test_doctest test_faulthandler test_importlib test_linecache test_mailbox test_pkg test_runpy test_tabnanny test_termios test_threadedtempfile test_tomllib test_urllib_response test_zipapp test_zipfile test_zipfile64 test_zstd
      • webbrowser: test_webbrowser
      • zipfile: test_zipfile
    • tokenize: test_tokenize test_unparse
      • traceback: test_code_module test_dictcomps test_importlib test_listcomps test_pyexpat test_setcomps test_threading test_unittest
    • traceback:
      • py_compile: test_cmd_line_script test_importlib
    • urllib.parse: test_sqlite3 test_urlparse
    • urllib.robotparser: test_robotparser
    • wave: test_wave

Legend:

  • [+] path exists in CPython
  • [x] up-to-date, [ ] outdated

youknowone marked this pull request as ready for review February 14, 2026 12:36
youknowone merged commit 9e61458 into main Feb 14, 2026
9 of 10 checks passed
youknowone deleted the agent-wf branch February 14, 2026 12:36
youknowone added a commit to youknowone/RustPython that referenced this pull request Mar 22, 2026
This file contains hidden or 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

skip:ci Skip running the ci

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant


Back | FazBrowse Home | New Git URL