Skip to content

Commit a0f0e87

Browse files
committed
update python to 3.8
Signed-off-by: Timo Glastra <timo@animo.id>
1 parent b9f5754 commit a0f0e87

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run-py-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- name: Install Python 3
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: 3.7
16+
python-version: 3.8
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install -r requirements.txt
2121
- name: Run tests with pytest
22-
run: pytest
22+
run: pytest

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def parse_requirements(filename):
3131
include_package_data=True,
3232
package_data={"aries_cloudcontroller": ["requirements.txt"]},
3333
install_requires=parse_requirements("requirements.txt"),
34-
python_requires=">=3.7.3",
34+
python_requires=">=3.8",
3535
classifiers=[
3636
"Programming Language :: Python :: 3",
3737
"License :: OSI Approved :: Apache Software License",

0 commit comments

Comments
 (0)