Skip to content

Python 3.8 -> 3.9 #210

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/run-smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.9
- name: Install pipenv
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ mypy = ">=1.5"
setuptools = "==78.1.1"

[requires]
python_version = "3.8"
python_version = "3.9"
429 changes: 218 additions & 211 deletions Pipfile.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Regula Document Reader web API Python 3.8+ client
# Regula Document Reader web API Python 3.9+ client

[![pypi](https://img.shields.io/pypi/v/regula.documentreader.webclient?style=flat-square)](https://support.regulaforensics.com/hc/en-us/articles/115000916306-Documentation)
[![OpenAPI](https://img.shields.io/badge/OpenAPI-defs-8c0a56?style=flat-square)](https://github.com/regulaforensics/DocumentReader-web-openapi)
Expand Down
8 changes: 4 additions & 4 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Regula Document Reader web API Python 3.5+ client
# Regula Document Reader web API Python 3.9+ client

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

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

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

Verify Python and pip versions:
```bash
python --version
> Python 3.8.2
> Python 3.9.2
pip --version
> pip 20.2.1 from /home/user/.local/lib/python3.8/site-packages/pip (python 3.8)
> pip 22.0.4 from /home/user/.local/lib/python3.9/site-packages/pip (python 3.9)
```

Cloning example:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
setup(
name="regula_documentreader_webclient",
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "7.4.45"),
python_requires=">=3.8",
python_requires=">=3.9",
description="Regula's Document Reader python client",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down