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: PythonExpert/sampleproject
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: pypa/sampleproject
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 20 commits
  • 13 files changed
  • 16 contributors

Commits on Jan 8, 2021

  1. Remove Python 3.5 and add 3.9 (pypa#132)

    Signed-off-by: Gábor Lipták <[email protected]>
    gliptak authored Jan 8, 2021
    Configuration menu
    Copy the full SHA
    90d44ab View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2021

  1. GitHub Actions (pypa#153)

    * Slight tweaks to the release workflow
    
    * Add testing workflow
    
    * Support Python 3.10
    
    * Remove Travis-CI config
    di authored Oct 30, 2021
    Configuration menu
    Copy the full SHA
    d2bae02 View commit details
    Browse the repository at this point in the history
  2. dead link: requirements.txt vs install_requires (pypa#147)

    Co-authored-by: Dustin Ingram <[email protected]>
    Tazoeur and di authored Oct 30, 2021
    Configuration menu
    Copy the full SHA
    091d322 View commit details
    Browse the repository at this point in the history
  3. Fix some dead links (pypa#148)

    Co-authored-by: Dustin Ingram <[email protected]>
    marcelm and di authored Oct 30, 2021
    Configuration menu
    Copy the full SHA
    3a83690 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2021

  1. Remove MANIFEST.in entirely (pypa#155)

    * Upgrade the Setuptools version
    
    That way, we can remove items from the manifest file.
    
    * Simplify the manifest file
    
    Remove:
    
    * pyproject.toml (now covered by setuptools>=43.0.0)
    * LICENSE.txt (included by `license_files` and covered by setuptools>=42.0.0)
    * setup.py (which is the file where the build is called)
    
    * Remove README.md from the manifest file
    
    It is now included by default.
    
    * Delete MANIFEST.in
    
    This is no longer necessary. All the items are included by Setuptools.
    DiddiLeija authored Nov 23, 2021
    Configuration menu
    Copy the full SHA
    87c524a View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

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

Commits on Mar 24, 2022

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

Commits on Sep 19, 2022

  1. Update release.yml (pypa#175)

    Mizux authored Sep 19, 2022
    Configuration menu
    Copy the full SHA
    d4ee05f View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2022

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

Commits on Apr 25, 2023

  1. Remove workflow warnings (pypa#190)

    The warnings are:
    Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2, actions/setup-python@v1. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/.
    The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
    Daemo00 authored Apr 25, 2023
    Configuration menu
    Copy the full SHA
    fa13f7d View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

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

Commits on Jul 26, 2023

  1. Add token permissions to release workflow. (pypa#192)

    Required for trusted publishing.
    di authored Jul 26, 2023
    Configuration menu
    Copy the full SHA
    bae8ff4 View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2023

  1. Update release.yml with release branch for gh-action-pypi-publish (

    …pypa#195)
    
    * Update `release.yml` with release branch for `gh-action-pypi-publish`
    
    Per documentation here: https://github.com/pypa/gh-action-pypi-publish
    
    (cc @webknjaz)
    
    * Update .github/workflows/release.yml
    
    Co-authored-by: Sviatoslav Sydorenko <[email protected]>
    
    ---------
    
    Co-authored-by: Sviatoslav Sydorenko <[email protected]>
    di and webknjaz authored Aug 23, 2023
    Configuration menu
    Copy the full SHA
    3fb1461 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    9944026 View commit details
    Browse the repository at this point in the history
  2. Fixes inconsistencies in pyproject.toml documentation. (pypa#197)

    * Minor improvements to pyproject.toml documentation.
    
    * Fixes readme field.
    
    ---------
    
    Co-authored-by: Dustin Ingram <[email protected]>
    thomasbbrunner and di authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    b1dfa48 View commit details
    Browse the repository at this point in the history
  3. Update pyproject.toml (pypa#204)

    * Update pyproject.toml
    
    - extend descriptions of build-system table
    - add useful links
    - edit other comments
    
    * Update pyproject.toml
    
    - be more clear that the values in [build-system] may be generated by the command line interface of the build backend, so the [build-system] table is not required
    - reorganize comments to better correspond to their sections
    
    * add changes from pypa#197
    
    add the changes authored by thomasbbrunner in pypa#197
    
    * implement changes from code review
    
    - separate links to guide and specification
    - remove text that can already be found by following the provided links
    - more accurate comment about the `build-backend` key
    
    * minor: ":"
    
    * better comment about extras
    
    Co-authored-by: chrysle <[email protected]>
    
    * remove # Optional coments, because instead of them we'll mark the REQUIRED fields
    
    ---------
    
    Co-authored-by: chrysle <[email protected]>
    Co-authored-by: Dustin Ingram <[email protected]>
    3 people authored Feb 29, 2024
    Configuration menu
    Copy the full SHA
    5d27795 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2024

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

Commits on Nov 6, 2024

  1. Configuration menu
    Copy the full SHA
    8603eaf View commit details
    Browse the repository at this point in the history
  2. pyproject: prep 4.0.0 (pypa#219)

    * pyproject: prep 4.0.0
    
    Signed-off-by: William Woodruff <[email protected]>
    
    * remove 3.8, add 3.13
    
    Signed-off-by: William Woodruff <[email protected]>
    
    * noxfile: remove 3.8, add 3.13
    
    Signed-off-by: William Woodruff <[email protected]>
    
    ---------
    
    Signed-off-by: William Woodruff <[email protected]>
    woodruffw authored Nov 6, 2024
    Configuration menu
    Copy the full SHA
    621e497 View commit details
    Browse the repository at this point in the history
Loading