Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sphinx-doc/sphinx-intl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.2.0
Choose a base ref
...
head repository: sphinx-doc/sphinx-intl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.3.0
Choose a head ref
  • 19 commits
  • 32 files changed
  • 4 contributors

Commits on Apr 19, 2024

  1. Configuration menu
    Copy the full SHA
    8763432 View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2024

  1. drop python<=3.7 support (#101)

    * drop python<=3.7 support
    
    iAccording to https://endoflife.date/python python 3.7 has been EOSed
    27 Jun 2023.
    Filter all python cde over `pyupgrade --py38-plus`.
    
    Signed-off-by: Tomasz Kłoczko <[email protected]>
    
    * update classifiers and remove mock as it is no longer needed
    
    Bump as well minimum pyton version to 3.8.
    
    Signed-off-by: Tomasz Kłoczko <[email protected]>
    
    * remove unused imports
    
    Filter all code over `ruff check --fix .`.
    
    Signed-off-by: Tomasz Kłoczko <[email protected]>
    
    * remove python 3.7 from gh workflows as it is no longer needed
    
    Signed-off-by: Tomasz Kłoczko <[email protected]>
    
    ---------
    
    Signed-off-by: Tomasz Kłoczko <[email protected]>
    kloczek authored Apr 20, 2024
    Configuration menu
    Copy the full SHA
    85329e3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cdeccfa View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2024

  1. Configuration menu
    Copy the full SHA
    324f402 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2024

  1. Configuration menu
    Copy the full SHA
    f19fe4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7c92d64 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    19b5b9e View commit details
    Browse the repository at this point in the history
  4. use tox-uv

    shimizukawa committed Apr 27, 2024
    Configuration menu
    Copy the full SHA
    b1f3505 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2024

  1. Configuration menu
    Copy the full SHA
    0c7a9ce View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2024

  1. add devcontainer and related dependabot config (#104)

    * add devcontainer and related dependabot config
    
    * dependabot interval for gha monthly
    
    * devcontainer uses OS Python
    shimizukawa authored Jun 16, 2024
    Configuration menu
    Copy the full SHA
    2ae1b3c View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    a116dff View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2024

  1. Avoid unrelated CI test for doc changes, and cache using setup-python…

    … action (#106)
    
    * ci: do not run test.yml on doc changes
    
    * ci: Cache using setup-python action
    
    * Update CHANGES.rst
    rffontenelle authored Nov 2, 2024
    Configuration menu
    Copy the full SHA
    d0954dc View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2024

  1. Add CI test for sphinx-intl's doc (#107)

    * ci: add test for documentation
    
    * Add sphinx-lint to doc/requirements.txt
    
    * ci: add workflow_dispatch to doc.yml
    
    Allows to call manually the workflow, which is helpful for linkcheck
    
    * Add workflow file to event trigger paths
    
    * Add self to doc/requirements.txt
    
    Needed due to a import of sphinx-intl in doc/conf.py
    
    * Annotate error messages from doc.yml
    rffontenelle authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    2ad874d View commit details
    Browse the repository at this point in the history
  2. fix for lint (#108)

    * fix for lint
    
    * add asterisk for paths to catch all changes under doc/
    shimizukawa authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    07f2485 View commit details
    Browse the repository at this point in the history
  3. update changes

    shimizukawa committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    e3bcf38 View commit details
    Browse the repository at this point in the history
  4. fix nits

    shimizukawa committed Nov 6, 2024
    Configuration menu
    Copy the full SHA
    390a46b View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2024

  1. Perform update in parallel (#110)

    The update command implementation runs over files that are independent
    from each other. As such, the overall update operation can be trivially
    parallelised to speed things up.
    
    This change introduces  The list of files that need to be
    compared/updated is collected in a first past. This list is then given
    to a multiprocessing pool to farm out the actual update of each
    individual file. The amount of parallelism is controlled through a new
    "jobs" parameter, command line option and environment variable. If no
    value is given for this option, all CPUs are used.
    
    I noticed this chance for improvement when doing a test run of the
    update of .po files for the Spanish translation of the CPython
    documentation. Local numbers in my 8-core, hyper-threaded AMD Ryzen 7
    5825U:
    
    -j 1 (same as old behaviour)
    
    real    12m5.402s
    user    12m4.942s
    sys     0m0.273s
    
    -j 8
    
    real    2m23.609s
    user    17m45.201s
    sys     0m0.460s
    
    <no value given>
    
    real    1m57.398s
    user    26m22.654s
    sys     0m0.989s
    
    Signed-off-by: Rodrigo Tobar <[email protected]>
    rtobar authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    ee2537a View commit details
    Browse the repository at this point in the history
  2. Drop Python-3.8 #109 (#111)

    shimizukawa authored Nov 10, 2024
    Configuration menu
    Copy the full SHA
    5ccc136 View commit details
    Browse the repository at this point in the history
  3. update changes

    shimizukawa committed Nov 10, 2024
    Configuration menu
    Copy the full SHA
    f532463 View commit details
    Browse the repository at this point in the history
Loading