From 1d969bdbc53eadef2f070cd335388dfc01b5f5e6 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Tue, 11 May 2021 13:02:00 +0300 Subject: [PATCH] pointing to edge docker added python 3.9 to test --- .circleci/config.yml | 18 +++++++++--------- setup.py | 1 + 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b3e9494..1cf8daa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: build: docker: - image: circleci/python:3.6.9 - - image: redislabs/redisai:edge-cpu + - image: redislabs/redisai:edge-cpu-bionic working_directory: ~/repo @@ -24,10 +24,10 @@ jobs: - run: name: install dependencies command: | - virtualenv venv + virtualenv --no-site-packages venv . venv/bin/activate pip install -r test-requirements.txt - + - save_cache: paths: - ./venv @@ -39,7 +39,7 @@ jobs: . venv/bin/activate nosetests --with-coverage -vsx test codecov - + - store_artifacts: path: test-reports destination: test-reports @@ -47,7 +47,7 @@ jobs: build_nightly: docker: - image: circleci/python:3.6.9 - - image: redislabs/redisai:edge-cpu + - image: redislabs/redisai:edge-cpu-bionic working_directory: ~/repo @@ -63,10 +63,10 @@ jobs: - run: name: install dependencies command: | - virtualenv venv + virtualenv --no-site-packgaes venv . venv/bin/activate pip install -r test-requirements.txt - + - save_cache: paths: - ./venv @@ -76,9 +76,9 @@ jobs: name: run tests command: | . venv/bin/activate - nosetests -vsx test + nosetests -vsx test - # no need for store_artifacts on nightly builds + # no need for store_artifacts on nightly builds workflows: version: 2 diff --git a/setup.py b/setup.py index 8cba692..6b3dfd3 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", "Topic :: Database", ], )