Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ jobs:
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
env:
POETRY_CACHE_DIR: ~/.cache/pypoetry-${{ matrix.python-version }}

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -44,10 +41,10 @@ jobs:
- name: Poetry cache
uses: actions/cache@v4
with:
path: ${{ env.POETRY_CACHE_DIR }}
key: ${{ runner.os }}-poetry${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
path: ~/.cache/pypoetry/artifacts
key: ${{ runner.os }}-poetry-artifacts-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
${{ runner.os }}-poetry${{ matrix.python-version }}-
${{ runner.os }}-poetry-artifacts-${{ matrix.python-version }}-
- name: Install dependencies
run: |
poetry install
Expand All @@ -62,7 +59,8 @@ jobs:
github.repository_owner == 'onfido' &&
(github.event_name == 'pull_request' ||
github.event_name == 'release' ||
github.event_name == 'workflow_dispatch') }}
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule') }}
run: |
poetry run pytest --show-capture=no
env:
Expand All @@ -77,7 +75,8 @@ jobs:
github.repository_owner == 'onfido' &&
(github.event_name == 'pull_request' ||
github.event_name == 'release' ||
github.event_name == 'workflow_dispatch') }}
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule') }}
run: |
poetry run pytest --show-capture=no
env:
Expand Down
8 changes: 4 additions & 4 deletions .release.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"source": {
"repo_url": "https://github.com/onfido/onfido-openapi-spec",
"short_sha": "6a36202",
"long_sha": "6a362029f0a58437e8be7185303ef14d3f342feb",
"version": "v6.1.0"
"short_sha": "d9d749d",
"long_sha": "d9d749dfbd3873524400efe236f7d398bb9e948e",
"version": "v6.2.0"
},
"release": "v6.2.0"
"release": "v6.3.0"
}
18 changes: 17 additions & 1 deletion onfido/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
""" # noqa: E501


__version__ = "6.2.0"
__version__ = "6.3.0"

# Define package exports
__all__ = [
Expand Down Expand Up @@ -44,6 +44,10 @@
"ApplicantUpdate",
"ApplicantUpdater",
"ApplicantsList",
"BiometricToken",
"BiometricTokenData",
"BiometricTokenUpdater",
"BiometricTokensList",
"Check",
"CheckBuilder",
"CheckRequest",
Expand Down Expand Up @@ -212,6 +216,9 @@
"IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid",
"IndiaPanReportAllOfProperties",
"IndiaPanReportAllOfPropertiesDevice",
"InvalidatedBiometricTokenSummary",
"InvalidatedBiometricTokenSummaryDeletedItems",
"InvalidatedBiometricTokensSummary",
"KnownFacesBreakdown",
"KnownFacesBreakdownImageIntegrity",
"KnownFacesBreakdownPreviouslySeenFaces",
Expand Down Expand Up @@ -266,6 +273,7 @@
"Task",
"TaskItem",
"TimelineFileReference",
"UpdateBiometricToken200Response",
"UsDrivingLicenceBreakdown",
"UsDrivingLicenceBreakdownAddress",
"UsDrivingLicenceBreakdownAddressBreakdown",
Expand Down Expand Up @@ -369,6 +377,10 @@
from onfido.models.applicant_update import ApplicantUpdate as ApplicantUpdate
from onfido.models.applicant_updater import ApplicantUpdater as ApplicantUpdater
from onfido.models.applicants_list import ApplicantsList as ApplicantsList
from onfido.models.biometric_token import BiometricToken as BiometricToken
from onfido.models.biometric_token_data import BiometricTokenData as BiometricTokenData
from onfido.models.biometric_token_updater import BiometricTokenUpdater as BiometricTokenUpdater
from onfido.models.biometric_tokens_list import BiometricTokensList as BiometricTokensList
from onfido.models.check import Check as Check
from onfido.models.check_builder import CheckBuilder as CheckBuilder
from onfido.models.check_request import CheckRequest as CheckRequest
Expand Down Expand Up @@ -537,6 +549,9 @@
from onfido.models.india_pan_report_all_of_breakdown_device_breakdown_pan_valid import IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid as IndiaPanReportAllOfBreakdownDeviceBreakdownPanValid
from onfido.models.india_pan_report_all_of_properties import IndiaPanReportAllOfProperties as IndiaPanReportAllOfProperties
from onfido.models.india_pan_report_all_of_properties_device import IndiaPanReportAllOfPropertiesDevice as IndiaPanReportAllOfPropertiesDevice
from onfido.models.invalidated_biometric_token_summary import InvalidatedBiometricTokenSummary as InvalidatedBiometricTokenSummary
from onfido.models.invalidated_biometric_token_summary_deleted_items import InvalidatedBiometricTokenSummaryDeletedItems as InvalidatedBiometricTokenSummaryDeletedItems
from onfido.models.invalidated_biometric_tokens_summary import InvalidatedBiometricTokensSummary as InvalidatedBiometricTokensSummary
from onfido.models.known_faces_breakdown import KnownFacesBreakdown as KnownFacesBreakdown
from onfido.models.known_faces_breakdown_image_integrity import KnownFacesBreakdownImageIntegrity as KnownFacesBreakdownImageIntegrity
from onfido.models.known_faces_breakdown_previously_seen_faces import KnownFacesBreakdownPreviouslySeenFaces as KnownFacesBreakdownPreviouslySeenFaces
Expand Down Expand Up @@ -591,6 +606,7 @@
from onfido.models.task import Task as Task
from onfido.models.task_item import TaskItem as TaskItem
from onfido.models.timeline_file_reference import TimelineFileReference as TimelineFileReference
from onfido.models.update_biometric_token200_response import UpdateBiometricToken200Response as UpdateBiometricToken200Response
from onfido.models.us_driving_licence_breakdown import UsDrivingLicenceBreakdown as UsDrivingLicenceBreakdown
from onfido.models.us_driving_licence_breakdown_address import UsDrivingLicenceBreakdownAddress as UsDrivingLicenceBreakdownAddress
from onfido.models.us_driving_licence_breakdown_address_breakdown import UsDrivingLicenceBreakdownAddressBreakdown as UsDrivingLicenceBreakdownAddressBreakdown
Expand Down
Loading
Loading