Skip to content

Commit 0c95fff

Browse files
committed
Require Cython>=3.1.1
1 parent e4d62ed commit 0c95fff

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/tests-and-linters.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/setup-python@v4
4545
with:
4646
python-version: 3.12
47-
- run: pip install tox 'cython>=3,<4'
47+
- run: pip install tox
4848
- run: tox -vv
4949
env:
5050
TOXENV: coveralls

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools", "Cython"]
2+
requires = ["setuptools", "Cython>=3.1.1"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

requirements-dev.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cython==3.1.0
1+
cython==3.1.1
22
setuptools
33
pytest
44
pytest-asyncio
@@ -13,7 +13,8 @@ mypy
1313
pyyaml
1414
httpx
1515
fastapi
16-
pydantic==1.10.17
16+
pydantic
17+
pydantic-settings
1718
numpy
1819
scipy
1920
boto3

0 commit comments

Comments
 (0)