Skip to content

Commit

Permalink
MAINT add 3.9 test
Browse files Browse the repository at this point in the history
  • Loading branch information
PSSF23 committed Nov 15, 2021
1 parent e29f43c commit 94d4fad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
17 changes: 10 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ jobs:
tutorials:
type: string
docker:
- image: cimg/python:3.8
- image: cimg/python:3.9
steps:
- checkout
- restore_cache:
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -54,7 +54,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand All @@ -78,11 +78,11 @@ jobs:
file: "coverage.xml"
deploy:
docker:
- image: cimg/python:3.8
- image: cimg/python:3.9
steps:
- checkout
- restore_cache:
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
- run:
name: install python dependencies
command: |
Expand All @@ -91,7 +91,7 @@ jobs:
pip install -r dev-requirements.txt
pip install -e .
- save_cache:
key: v2-3.8-dependency-cache-{{ checksum "dev-requirements.txt" }}
key: v2-3.9-dependency-cache-{{ checksum "dev-requirements.txt" }}
paths:
- "venv"
- run:
Expand Down Expand Up @@ -127,14 +127,17 @@ workflows:
- build:
name: "v3.8"
version: "3.8"
- build:
name: "v3.9"
version: "3.9"
- test-module:
name: "proglearn"
module: "proglearn"
benchmarks: "benchmarks/"
experiments: "docs/experiments/"
tutorials: "docs/tutorials/"
requires:
- "v3.8"
- "v3.9"
- deploy:
filters:
tags:
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def run(self):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=REQUIREMENTS,
packages=find_packages(exclude=["tests", "tests.*", "tests/*"]),
Expand Down

0 comments on commit 94d4fad

Please sign in to comment.