Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7390441

Browse files
authoredJun 4, 2025··
Merge pull request #133 from regulaforensics/stable
stable -> master
2 parents 4df9067 + a161c71 commit 7390441

File tree

6 files changed

+19
-11
lines changed

6 files changed

+19
-11
lines changed
 

‎.github/workflows/run-smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v2
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919
- name: Install pipenv
2020
run: |
2121
python -m pip install --upgrade pip

‎Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ chardet = "*"
2020
packaging = ">=22.0"
2121

2222
[requires]
23-
python_version = "3.8"
23+
python_version = "3.9"

‎Pipfile.lock

Lines changed: 11 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Regula Face SDK web API Python 3.5+ client
1+
# Regula Face SDK web API Python 3.9+ client
22

33
[![OpenAPI](https://img.shields.io/badge/OpenAPI-defs-8c0a56?style=flat-square)](https://github.com/regulaforensics/FaceSDK-web-openapi)
44
[![documentation](https://img.shields.io/badge/docs-en-f6858d?style=flat-square)](https://support.regulaforensics.com/hc/en-us/articles/115000916306-Documentation)

‎example/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Regula FaceSDK web API Python 3.5+ client
1+
# Regula FaceSDK web API Python 3.9+ client
22

33
:warning: NOTE: for some systems `python3` and `pip3` commands should be used, instead of `python` and `pip`.
44

55
Requirements:
6-
- installed python 3.5 or higher
6+
- installed python 3.9 or higher
77
- installed [pip](https://pip.pypa.io/en/stable/installing/)
88

99
Verify Python and pip versions:
1010
```bash
1111
python --version
12-
> Python 3.8.2
12+
> Python 3.9.2
1313
pip --version
14-
> pip 20.2.1 from /home/user/.local/lib/python3.8/site-packages/pip (python 3.8)
14+
> pip 20.2.1 from /home/user/.local/lib/python3.9/site-packages/pip (python 3.9)
1515
```
1616

1717
Cloning example:

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
setup(
1010
name="regula_facesdk_webclient",
1111
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "6.2dev"),
12-
python_requires=">=3.5",
12+
python_requires=">=3.9",
1313
description="Regula's FaceSDK web python client",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)
Please sign in to comment.