Skip to content

Commit 4e97d0b

Browse files
Bump CircleCI Python version to 3.8 (#371)
* Bump CircleCI Python version to 3.8 * Add official support for Python 3.8 and end support for Python 3.6 (end of life) * Add official support for Python 3.9 and Python 3.10 (tested)
1 parent bedfab9 commit 4e97d0b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.circleci/config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
jobs:
44
test:
55
docker:
6-
- image: python:3.7
6+
- image: python:3.8
77
working_directory: ~/repo
88
steps:
99
- checkout
@@ -19,8 +19,8 @@ jobs:
1919
command: |
2020
ls $HOME
2121
if [ ! -d "/home/circleci/conda" ]; then
22-
wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.9.2-Linux-x86_64.sh
23-
/bin/bash Miniconda3-py37_4.9.2-Linux-x86_64.sh -b -p $HOME/conda
22+
wget https://repo.anaconda.com/miniconda/Miniconda3-py38_4.10.3-Linux-x86_64.sh
23+
/bin/bash Miniconda3-py38_4.10.3-Linux-x86_64.sh -b -p $HOME/conda
2424
export PATH=$HOME/conda/bin:$PATH
2525
conda install -y -c defaults -c conda-forge sregistry
2626
else
@@ -49,7 +49,7 @@ jobs:
4949

5050
deploy:
5151
docker:
52-
- image: python:3.7
52+
- image: python:3.8
5353
working_directory: ~/repo
5454
steps:
5555
- checkout

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,10 @@
3131
install_requires=requirements,
3232
keywords="GerryChain",
3333
classifiers=[
34-
"Programming Language :: Python :: 3.6",
3534
"Programming Language :: Python :: 3.7",
35+
"Programming Language :: Python :: 3.8",
36+
"Programming Language :: Python :: 3.9",
37+
"Programming Language :: Python :: 3.10",
3638
"Operating System :: OS Independent",
3739
"License :: OSI Approved :: BSD License",
3840
],

0 commit comments

Comments
 (0)