Skip to content

Commit 57b2036

Browse files
Merge branch 'develop' into feature/SP-23476
2 parents 568c95c + 532390a commit 57b2036

File tree

6 files changed

+226
-219
lines changed

6 files changed

+226
-219
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
@@ -24,4 +24,4 @@ mypy = ">=1.5"
2424
setuptools = "==78.1.1"
2525

2626
[requires]
27-
python_version = "3.8"
27+
python_version = "3.9"

Pipfile.lock

Lines changed: 218 additions & 211 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 Document Reader web API Python 3.8+ client
1+
# Regula Document Reader web API Python 3.9+ client
22

33
[![pypi](https://img.shields.io/pypi/v/regula.documentreader.webclient?style=flat-square)](https://support.regulaforensics.com/hc/en-us/articles/115000916306-Documentation)
44
[![OpenAPI](https://img.shields.io/badge/OpenAPI-defs-8c0a56?style=flat-square)](https://github.com/regulaforensics/DocumentReader-web-openapi)

example/README.md

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

33
:bulb: Before you start: if you just want to play with an online demo, visit our [playground](https://api.regulaforensics.com).
44

@@ -10,15 +10,15 @@ you agree with our [Privacy Policy](https://regulaforensics.com/en/company/priva
1010
and [License Agreement](https://downloads.regulaforensics.com/work/SDK/doc/Eula.pdf).
1111

1212
Requirements:
13-
- installed python 3.5 or higher
13+
- installed python 3.9 or higher
1414
- installed [pip](https://pip.pypa.io/en/stable/installing/)
1515

1616
Verify Python and pip versions:
1717
```bash
1818
python --version
19-
> Python 3.8.2
19+
> Python 3.9.2
2020
pip --version
21-
> pip 20.2.1 from /home/user/.local/lib/python3.8/site-packages/pip (python 3.8)
21+
> pip 22.0.4 from /home/user/.local/lib/python3.9/site-packages/pip (python 3.9)
2222
```
2323

2424
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_documentreader_webclient",
1111
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "7.4.45"),
12-
python_requires=">=3.8",
12+
python_requires=">=3.9",
1313
description="Regula's Document Reader python client",
1414
long_description=long_description,
1515
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)