Skip to content
This repository has been archived by the owner on Jul 3, 2023. It is now read-only.

Commit

Permalink
Adds support for python 3.11, removes support for python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
elijahbenizzy committed Jan 29, 2023
1 parent af74778 commit f5365f0
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
task:
type: string
docker:
- image: circleci/python:<< parameters.python-version >>
- image: cimg/python:<< parameters.python-version >>
environment:
TASK: << parameters.task >>
steps:
Expand All @@ -21,10 +21,6 @@ jobs:
workflows:
unit-test-workflow:
jobs:
- test:
name: build-py36
python-version: '3.6'
task: tests
- test:
name: build-py37
python-version: '3.7'
Expand All @@ -41,13 +37,17 @@ workflows:
name: build-py310
python-version: '3.10'
task: tests
- test:
name: build-py311
python-version: '3.11'
task: tests
- test:
name: pre-commit
python-version: '3.9'
task: pre-commit
- test:
name: dask-py36
python-version: '3.6'
name: dask-py311
python-version: '3.11'
task: dask
- test:
name: dask-py37
Expand All @@ -61,10 +61,6 @@ workflows:
name: spark-py38
python-version: '3.8'
task: pyspark
- test:
name: integrations-py36
python-version: '3.6'
task: integrations
- test:
name: integrations-py37
python-version: '3.7'
Expand All @@ -81,6 +77,10 @@ workflows:
name: integrations-py310
python-version: '3.10'
task: integrations
- test:
name: integrations-py311
python-version: '3.11'
task: integrations
- test:
name: asyncio-py39
python-version: '3.9'
Expand All @@ -89,3 +89,7 @@ workflows:
name: asyncio-py310
python-version: '3.10'
task: async
- test:
name: asyncio-py311
python-version: '3.10'
task: async

0 comments on commit f5365f0

Please sign in to comment.