Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI Python 3.9 #487

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ jobs:
- store-pytest-results
- store-coverage-report

py38couchbase:
py39couchbase:
docker:
- image: cimg/python:3.8.17
- image: cimg/python:3.9.17
- image: couchbase/server-sandbox:5.5.0
working_directory: ~/repo
steps:
Expand All @@ -282,9 +282,9 @@ jobs:
- store-pytest-results
- store-coverage-report

py37cassandra:
py39cassandra:
docker:
- image: cimg/python:3.7.17
- image: cimg/python:3.9.17
- image: cassandra:3.11
environment:
MAX_HEAP_SIZE: 2048m
Expand All @@ -311,9 +311,9 @@ jobs:
- store-pytest-results
- run_sonarqube

py38gevent:
py39gevent:
docker:
- image: cimg/python:3.8.17
- image: cimg/python:3.9.17
working_directory: ~/repo
steps:
- checkout
Expand All @@ -335,9 +335,9 @@ workflows:
- python310
- python311
- python312
- py37cassandra
- py38couchbase
- py38gevent
- py39cassandra
- py39couchbase
- py39gevent
- final_job:
requires:
- python37
Expand All @@ -346,6 +346,6 @@ workflows:
- python310
- python311
- python312
- py37cassandra
- py38couchbase
- py38gevent
- py39cassandra
- py39couchbase
- py39gevent
Loading