Skip to content
Open
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
docker:
# specify the version you desire here
# use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers`
- image: circleci/python:3.9.2
- image: cimg/python:3.12.8

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
Expand All @@ -33,7 +33,7 @@ jobs:
python3 -m venv venv
. venv/bin/activate
pip install -r requirements.txt
sudo pip install codecov
pip install codecov setuptools

- run:
name: install openjdk
Expand All @@ -55,7 +55,9 @@ jobs:

- run:
name: coverage report
command: codecov
command: |
. venv/bin/activate
python -m codecov

- store_artifacts:
path: test-reports
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
python-version: '3.12'

- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.22.0

- uses: actions/upload-artifact@v4
with:
Expand All @@ -44,7 +44,7 @@ jobs:
python-version: '3.12'

- name: Install dependencies
run: python -m pip install cython numpy setuptools
run: python -m pip install cython==3.0.10 numpy==1.26.4 setuptools

- name: Build sdist
run: python setup.py sdist
Expand Down
Loading