Skip to content

Commit

Permalink
ci: drop python 3.7 and 4.8 support. add python3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pity7736 committed May 16, 2023
1 parent 41b6b6c commit 7a231e2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
21 changes: 5 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
jobs:
test-python-3.7: &template
test-python-3.11: &template
docker:
- image: circleci/python:3.7
- image: cimg/python:3.11

working_directory: ~/nyoibo

Expand All @@ -18,32 +18,21 @@ jobs:
name: run tests
command: sh run_tests.sh

test-python-3.6:
<<: *template
docker:
- image: circleci/python:3.6

test-python-3.8:
<<: *template
docker:
- image: circleci/python:3.8

test-python-3.9:
<<: *template
docker:
- image: circleci/python:3.9
- image: cimg/python:3.9

test-python-3.10:
<<: *template
docker:
- image: circleci/python:3.10
- image: cimg/python:3.10


workflows:
version: 2
test:
jobs:
- test-python-3.7
- test-python-3.8
- test-python-3.9
- test-python-3.10
- test-python-3.11
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'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 :: Software Development',
'Topic :: Utilities',
'Typing :: Typed'
Expand Down

0 comments on commit 7a231e2

Please sign in to comment.