Skip to content

Commit 6d09104

Browse files
committed
Drop Python versions 3.6 and 3.7
1 parent d8f9f5e commit 6d09104

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/python-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Lint
4343
run: |
4444
python -m black --line-length=120 --check .
45-
python -m check_python_versions --expect 3.6- --only setup.py
45+
python -m check_python_versions --expect 3.8- --only setup.py
4646
- name: Test
4747
env:
4848
TEST_CONFIGURATION_ACCESS_TOKEN: ${{ secrets.TEST_CONFIGURATION_ACCESS_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This repository contains Aspose.BarCode Cloud SDK for Python source code. This S
2121

2222
Supported Python versions:
2323

24-
- Python 3.6+
24+
- Python 3.8+
2525

2626
To use these SDKs, you will need Client Id and Client Secret which can be looked up at [Aspose Cloud Dashboard](https://dashboard.aspose.cloud/applications) (free registration in Aspose Cloud is required for this).
2727

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@
3535
"License :: OSI Approved :: MIT License",
3636
"Operating System :: OS Independent",
3737
"Programming Language :: Python :: 3",
38-
"Programming Language :: Python :: 3.6",
39-
"Programming Language :: Python :: 3.7",
4038
"Programming Language :: Python :: 3.8",
4139
"Programming Language :: Python :: 3.9",
4240
"Programming Language :: Python :: 3.10",

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
; Use tox version 3.x
22
; Run particular env:
3-
; python -m tox -e 3.6
3+
; python -m tox -e 3.8
44
[tox]
5-
envlist = 3.6, 3.12
5+
envlist = 3.8, 3.13
66

77
[testenv]
88
passenv = TEST_CONFIGURATION_ACCESS_TOKEN

0 commit comments

Comments
 (0)