Skip to content

Commit 009ae0d

Browse files
authored
Merge pull request #509 from rsforbes/patch-numpy
- pyproject.toml revsions - format now complies with PEP 621, now supported by Poetry 2.0 - resolved python 3.13 specifying minimum numpy 2.0. - added CircleCI build support for python 3.13
2 parents a0e83c3 + 761fe39 commit 009ae0d

File tree

3 files changed

+210
-41
lines changed

3 files changed

+210
-41
lines changed

.circleci/config.yml

+14-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,22 @@ jobs:
1717

1818
steps:
1919
- checkout
20-
- run: poetry install --no-ansi
20+
- run:
21+
name: update poetry
22+
command: poetry self update
23+
- run:
24+
name: install dependencies
25+
command: poetry install --no-ansi
2126
- unless:
2227
condition: << parameters.circle_pr_number >>
2328
steps:
2429
- snyk/scan
25-
- run: poetry run pytest
26-
- run: poetry run flake8
30+
- run:
31+
name: run tests
32+
command: poetry run pytest
33+
- run:
34+
name: run flake8
35+
command: poetry run flake8
2736

2837
workflows:
2938
build:
@@ -35,6 +44,7 @@ workflows:
3544
"cimg/python:3.9",
3645
"cimg/python:3.10",
3746
"cimg/python:3.11",
38-
"cimg/python:3.12"
47+
"cimg/python:3.12",
48+
"cimg/python:3.13"
3949
]
4050

0 commit comments

Comments
 (0)