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: swap 3.10 for 3.11 #60

Merged
merged 3 commits into from
Nov 22, 2022
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
25 changes: 9 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
version: 2.1

orbs:
python: circleci/python@0.3.2
python: circleci/python@2.1.1

jobs:
python_test:
Expand All @@ -25,21 +25,17 @@ jobs:
type: string
default: "3.9"
docker:
- image: circleci/python:<< parameters.python_ver >>
- image: cimg/python:<< parameters.python_ver >>
steps:
- checkout
- python/load-cache:
dependency-file: requirements_dev.txt
key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >>
- python/install-packages:
pip-dependency-file: requirements_dev.txt
pkg-manager: pip
- run:
name: Deps
command: |
sudo apt-get update
sudo apt-get install cmake openssh-server
pip install -r requirements_dev.txt
- python/save-cache:
dependency-file: requirements_dev.txt
key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >>
- run:
command: |
pip install -e .
Expand Down Expand Up @@ -95,9 +91,9 @@ jobs:
- run:
name: sdist
command: python setup.py sdist
- python/load-cache:
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
dependency-file: requirements_dev.txt
- python/install-packages:
pip-dependency-file: requirements_dev.txt
pkg-manager: pip
- run:
name: Git LFS
command: |
Expand All @@ -113,9 +109,6 @@ jobs:
pip install twine
which twine
which python3
- python/save-cache:
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
dependency-file: requirements_dev.txt
- run:
name: Build Wheels
command: |
Expand Down Expand Up @@ -150,7 +143,7 @@ workflows:
- "3.6"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
filters:
tags:
ignore: /.*/
Expand Down