Skip to content

Commit

Permalink
[ci] upgrade base image & don't requiring old numpy version in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Dec 12, 2024
1 parent 5fd2305 commit 7ac7290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ jobs:
build:

docker:
- image: cimg/base:2021.04
- image: cimg/base:2024.12
#- image: cimg/base:2021.04
#- image: circleci/python:3.13.1

steps:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
history_file.read())


requirements = ['numpy<2', 'cython', 'matplotlib', 'corner']
requirements = ['numpy', 'cython', 'matplotlib', 'corner']

setup_requirements = ['pytest-runner', ]

Expand Down

0 comments on commit 7ac7290

Please sign in to comment.