Changeset edf82d8


Ignore:
Timestamp:
Dec 28, 2023, 12:58:20 PM (10 months ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
master
Children:
918b764
Parents:
a11ea9d
Message:

[ci] add python 3.12 to circleci

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .circleci/config.yml

    ra11ea9d redf82d8  
    8383          path: dist/
    8484
     85  build-312:
     86    docker:
     87      - image: cimg/python:3.12
     88    steps:
     89      - checkout
     90      - run: *apt-install
     91      - run: *pip-install
     92      - run: *build-wheel
     93      - run: *install-wheel
     94      - run: *test-pytest
     95      - run: *uninstall-wheel
     96      - store_artifacts:
     97          path: dist/
     98
     99  build-312-nodeps:
     100    docker:
     101      - image: cimg/python:3.12
     102    steps:
     103      - checkout
     104      - run: *pip-install
     105      - run: *build-wheel
     106      - run: *install-wheel
     107      - run: *test-pytest-nosounds
     108      - run: *uninstall-wheel
     109      - store_artifacts:
     110          path: dist/
     111
    85112workflows:
    86113  version: 2
     
    91118      - build-310
    92119      - build-310-nodeps
     120      - build-312
     121      - build-312-nodeps
Note: See TracChangeset for help on using the changeset viewer.