Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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:certifi/python-certifi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base:2021.10.08
Choose a base ref
Loading
...
head repository:certifi/python-certifi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare:2022.12.07
Choose a head ref
Loading
  • 19commits
  • 12files changed
  • 11contributors

Commits on Oct 26, 2021

  1. Fix homepage link (#145)

    * Fix homepage linkAnd remove broken docs link* Remove broken link
    @hugovk
    hugovk authoredOct 26, 2021
    Configuration menu
    Copy the full SHA
    b99a23fView commit details
    Browse the repository at this point in the history

Commits on Oct 27, 2021

  1. Added Required Python Version (#152)

    * Added Required Python VersionAdded python_requires to specify the required python version for the library.* Updated required python version* Removed Classifiers for unsupported python versions* UpdatedCo-authored-by: Nirjas Jakilim <Nirzak@users.noreply.github.com>
    @Nirzak
    Nirzak andNirzak authoredOct 27, 2021
    Configuration menu
    Copy the full SHA
    1c8485cView commit details
    Browse the repository at this point in the history
  2. Add type annotations to package

    Adding type annotations will allow packages consuming certifi to haveaccess to its typing information. The py.typed data file is include forPEP 561 compliance.If the API is ever expanded, the mypy type checker will ensure it isalso typed. For example, right now, typeshed is incomplete aftercertifi.contents() was added:https://github.com/python/typeshed/blob/ac2ef6e8c963a45841ad91e068e06748caa1fce6/stubs/certifi/certifi.pyi
    @jdufresne
    jdufresne committedOct 27, 2021
    1Configuration menu
    Copy the full SHA
    5f09ea8View commit details
    Browse the repository at this point in the history
  3. Merge pull request#180from jdufresne/mypy

    Add type annotations to package
    @sigmavirus24
    sigmavirus24 authoredOct 27, 2021
    Configuration menu
    Copy the full SHA
    ff23c47View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

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

Commits on Mar 12, 2022

  1. Automatically lock github issues after they've been closed for 90 days (

    #189)This will help ensure issues are not ressurected long after they're closed.
    @alex
    alex authoredMar 12, 2022
    Configuration menu
    Copy the full SHA
    51c3f2aView commit details
    Browse the repository at this point in the history

Commits on May 18, 2022

  1. 2022.05.18

    @Lukasa
    Lukasa committedMay 18, 2022
    Configuration menu
    Copy the full SHA
    e713282View commit details
    Browse the repository at this point in the history

Commits on May 19, 2022

  1. Add support for Python 3.10 and drop EOL 3.5 (#167)

    * Add support for Python 3.10* Remove Trove classifiers for dropped versions* Remove redundant setup.cfg: no need for universal wheels for Python 3-only, setuptools and wheel auto-find LICENSE files* Added Required Python VersionAdded python_requires to specify the required python version for the library.* Updated required python version* Drop support for EOL Python 3.5* Upgrade Python syntax with pyupgrade --py36-plusCo-authored-by: Nirjas Jakilim <Nirzak@users.noreply.github.com>
    @hugovk@Nirzak
    hugovk andNirzak authoredMay 19, 2022
    Configuration menu
    Copy the full SHA
    04b7480View commit details
    Browse the repository at this point in the history
  2. 2022.05.18.1

    @Lukasa
    Lukasa committedMay 19, 2022
    Configuration menu
    Copy the full SHA
    75cc94dView commit details
    Browse the repository at this point in the history

Commits on May 21, 2022

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

Commits on Jun 15, 2022

  1. 2022.06.15

    @Lukasa
    Lukasa committedJun 15, 2022
    Configuration menu
    Copy the full SHA
    9d514b4View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

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

Commits on Jul 15, 2022

  1. Fix deprecation warning on Python 3.11 (#199)

    * Fix deprecation warning on Python 3.11Fixes#192.* Retain support for Python 3.6Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>* Bump actions versions* Use same 'where' for 3.6 and 3.7-3.10Co-authored-by: Adam Johnson <me@adamj.eu>Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    @hugovk@adamchainz@AA-Turner
    3 people authoredJul 15, 2022
    Configuration menu
    Copy the full SHA
    47fb7abView commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2022

  1. 2022.06.15.1

    @Lukasa
    Lukasa committedSep 9, 2022
    Configuration menu
    Copy the full SHA
    b8eb5e9View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2022

  1. Only use importlib.resources's new files() / Traversable API on Pytho…

    …n ≥3.11 (#204)Using importlib.resource's files() API on 3.9 and 3.10 causes aTypeError on 3.9 and a ValueError on 3.10 when running under athird-party meta path importer (like PyOxidizer's OxidizedImporter) thatdoesn't support the relatively-new API.  This is because the fulladapter layer (importlib.resources._adapters) for the older importlibresources API doesn't exist until Python 3.11.The older resources API is now used by 3.7–3.10, as it was prior to thecertifi 2022.06.15.1 release.  This codepath has existed in certifisince April 2020 (3fc8fec).An alternative to this change would be testing the actual importer inuse at runtime (e.g. certifi.__loader__) for files() support, but thatseemed more complex than reverting to the previous codepath here.Resolves:#203Related-to:#199Related-to:#123
    @tsibley
    tsibley authoredSep 13, 2022
    Configuration menu
    Copy the full SHA
    de0eae1View commit details
    Browse the repository at this point in the history
  2. 2022.06.15.2

    @Lukasa
    Lukasa committedSep 13, 2022
    Configuration menu
    Copy the full SHA
    aca828aView commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2022

  1. 2022.09.14

    @Lukasa
    Lukasa committedSep 14, 2022
    Configuration menu
    Copy the full SHA
    939a28fView commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2022

  1. 2022.09.24

    @Lukasa
    Lukasa committedSep 24, 2022
    Configuration menu
    Copy the full SHA
    b81bdb2View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2022

  1. 2022.12.07

    @Lukasa
    Lukasa committedDec 7, 2022
    3Configuration menu
    Copy the full SHA
    9e9e840View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp