Skip to content

Commit 94d4fad

Browse files
committed
MAINT add 3.9 test
1 parent e29f43c commit 94d4fad

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

.circleci/config.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ jobs:
4141
tutorials:
4242
type: string
4343
docker:
44-
- image: cimg/python:3.8
44+
- image: cimg/python:3.9
4545
steps:
4646
- checkout
4747
- restore_cache:
48-
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
48+
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
4949
- run:
5050
name: install python dependencies
5151
command: |
@@ -54,7 +54,7 @@ jobs:
5454
pip install -r dev-requirements.txt
5555
pip install -e .
5656
- save_cache:
57-
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
57+
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
5858
paths:
5959
- "venv"
6060
- run:
@@ -78,11 +78,11 @@ jobs:
7878
file: "coverage.xml"
7979
deploy:
8080
docker:
81-
- image: cimg/python:3.8
81+
- image: cimg/python:3.9
8282
steps:
8383
- checkout
8484
- restore_cache:
85-
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
85+
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
8686
- run:
8787
name: install python dependencies
8888
command: |
@@ -91,7 +91,7 @@ jobs:
9191
pip install -r dev-requirements.txt
9292
pip install -e .
9393
- save_cache:
94-
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
94+
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
9595
paths:
9696
- "venv"
9797
- run:
@@ -127,14 +127,17 @@ workflows:
127127
- build:
128128
name: "v3.8"
129129
version: "3.8"
130+
- build:
131+
name: "v3.9"
132+
version: "3.9"
130133
- test-module:
131134
name: "proglearn"
132135
module: "proglearn"
133136
benchmarks: "benchmarks/"
134137
experiments: "docs/experiments/"
135138
tutorials: "docs/tutorials/"
136139
requires:
137-
- "v3.8"
140+
- "v3.9"
138141
- deploy:
139142
filters:
140143
tags:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ def run(self):
5252
"Programming Language :: Python :: 3.6",
5353
"Programming Language :: Python :: 3.7",
5454
"Programming Language :: Python :: 3.8",
55+
"Programming Language :: Python :: 3.9",
5556
],
5657
install_requires=REQUIREMENTS,
5758
packages=find_packages(exclude=["tests", "tests.*", "tests/*"]),

0 commit comments

Comments
 (0)