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: certifi/python-certifi
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2020.11.08
Choose a base ref
...
head repository: certifi/python-certifi
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2020.12.05
Choose a head ref
  • 2 commits
  • 6 files changed
  • 3 contributors

Commits on Nov 25, 2020

  1. Added simple tests and CI (#140)

    * add 2 basic unit tests
    
    * Add Github workflow for pytest run
    
    * Various cleanups
    
    Co-authored-by: Benjamin Greiner <code@bnavigator.de>
    alex and bnavigator authored Nov 25, 2020
    Copy the full SHA
    f524f41 View commit details

Commits on Dec 5, 2020

  1. 2020.12.05

    Lukasa committed Dec 5, 2020
    1
    Copy the full SHA
    45a6465 View commit details
Showing with 87 additions and 323 deletions.
  1. +27 −0 .github/workflows/ci.yml
  2. +3 −0 MANIFEST.in
  3. +1 −1 certifi/__init__.py
  4. +41 −322 certifi/cacert.pem
  5. 0 certifi/tests/__init__.py
  6. +15 −0 certifi/tests/test_certify.py
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
push:
branches: [master]
pull_request: {}

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Test with pytest
run: |
pytest
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
include MANIFEST.in README.rst LICENSE certifi/cacert.pem

exclude .github/
recursive-exclude .github
2 changes: 1 addition & 1 deletion certifi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .core import contents, where

__version__ = "2020.11.08"
__version__ = "2020.12.05"
Loading