Skip to content

Commit

Permalink
Python 3.7 is EOL, add Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Aug 27, 2023
1 parent 998b141 commit 9dd7676
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ test-template: &test-template
make test
jobs:
py37:
docker:
- image: python:3.7-slim
<<: *test-template

py38:
docker:
- image: python:3.8-slim
Expand All @@ -37,6 +32,11 @@ jobs:
- image: python:3.10-slim
<<: *test-template

py311:
docker:
- image: python:3.11-slim
<<: *test-template

# package-and-publish:
# machine: true
# working_directory: ~/imgp
Expand All @@ -60,10 +60,10 @@ workflows:

test:
jobs: &all-tests
- py37
- py38
- py39
- py310
- py311

nightly:
triggers:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ For example, if an image has a resolution of 2048x1365 and is being resized to 1

#### Dependencies

`imgp` requires Python 3.7 or later.
`imgp` requires Python 3.8 or later.

To install PIL library on Ubuntu, run:

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_dist(pkgname):
url='https://github.com/jarun/imgp',
license='GPLv3',
license_file='LICENSE',
python_requires='>=3.6', # requires pip>=9.0.0
python_requires='>=3.8', # requires pip>=9.0.0
platforms=['any'],
py_modules=['imgp'],
install_requires=requirements,
Expand All @@ -58,10 +58,10 @@ def get_dist(pkgname):
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Utilities'
]
)

0 comments on commit 9dd7676

Please sign in to comment.