Skip to content

Commit 9dd7676

Browse files
committed
Python 3.7 is EOL, add Python 3.11
1 parent 998b141 commit 9dd7676

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,6 @@ test-template: &test-template
1717
make test
1818
1919
jobs:
20-
py37:
21-
docker:
22-
- image: python:3.7-slim
23-
<<: *test-template
24-
2520
py38:
2621
docker:
2722
- image: python:3.8-slim
@@ -37,6 +32,11 @@ jobs:
3732
- image: python:3.10-slim
3833
<<: *test-template
3934

35+
py311:
36+
docker:
37+
- image: python:3.11-slim
38+
<<: *test-template
39+
4040
# package-and-publish:
4141
# machine: true
4242
# working_directory: ~/imgp
@@ -60,10 +60,10 @@ workflows:
6060

6161
test:
6262
jobs: &all-tests
63-
- py37
6463
- py38
6564
- py39
6665
- py310
66+
- py311
6767

6868
nightly:
6969
triggers:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ For example, if an image has a resolution of 2048x1365 and is being resized to 1
7575

7676
#### Dependencies
7777

78-
`imgp` requires Python 3.7 or later.
78+
`imgp` requires Python 3.8 or later.
7979

8080
To install PIL library on Ubuntu, run:
8181

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def get_dist(pkgname):
3636
url='https://github.com/jarun/imgp',
3737
license='GPLv3',
3838
license_file='LICENSE',
39-
python_requires='>=3.6', # requires pip>=9.0.0
39+
python_requires='>=3.8', # requires pip>=9.0.0
4040
platforms=['any'],
4141
py_modules=['imgp'],
4242
install_requires=requirements,
@@ -58,10 +58,10 @@ def get_dist(pkgname):
5858
'Operating System :: OS Independent',
5959
'Programming Language :: Python :: 3',
6060
'Programming Language :: Python :: 3 :: Only',
61-
'Programming Language :: Python :: 3.6',
62-
'Programming Language :: Python :: 3.7',
6361
'Programming Language :: Python :: 3.8',
6462
'Programming Language :: Python :: 3.9',
63+
'Programming Language :: Python :: 3.10',
64+
'Programming Language :: Python :: 3.11',
6565
'Topic :: Utilities'
6666
]
6767
)

0 commit comments

Comments
 (0)