-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This included a number of changes related to the CPython API. I additionally bumped the supported python versions in CI.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,30 +16,30 @@ | |
version: 2.1 | ||
|
||
orbs: | ||
python: circleci/[email protected].2 | ||
python: circleci/python@2.0.3 | ||
|
||
jobs: | ||
python_test: | ||
parameters: | ||
python_ver: | ||
type: string | ||
default: "3.6" | ||
default: "3.11" | ||
docker: | ||
- image: circleci/python:<< parameters.python_ver >> | ||
steps: | ||
- checkout | ||
- python/load-cache: | ||
dependency-file: requirements_dev.txt | ||
key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >> | ||
# - python/load-cache: # This command is unavailable in the orb | ||
# dependency-file: requirements_dev.txt | ||
# key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >> | ||
- 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 >> | ||
# - python/save-cache: # This command is unavailable in the orb | ||
# dependency-file: requirements_dev.txt | ||
# key: depsv3-{{ .Branch }}.{{ arch }}-PY<< parameters.python_ver >> | ||
- run: | ||
command: | | ||
python setup.py build_ext --inplace | ||
|
@@ -139,17 +139,17 @@ jobs: | |
steps: *manylinux-steps | ||
|
||
workflows: | ||
version: 2.1 | ||
# version: 2.1 - default? | ||
main: | ||
jobs: | ||
- python_test: | ||
matrix: | ||
parameters: | ||
python_ver: | ||
- "3.6" | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
filters: | ||
tags: | ||
ignore: /.*/ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.