Skip to content

Commit

Permalink
chore: bump python dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfikl committed Feb 1, 2025
1 parent 0fbd410 commit ec5b014
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 14 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.png
*.npz
*.so
requirements.in

# Generated directories
/target
Expand Down
3 changes: 2 additions & 1 deletion python/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ requirements_in:
with open("pyproject.toml", "rb") as pyf:
config = tomllib.load(pyf)

outf.write("This file is autogenerated. Do not modify it!")
outf.write("# This file is autogenerated. Do not modify it!\n\n")
outf.write("\n".join(config["build-system"]["requires"]))

[private]
Expand All @@ -84,6 +84,7 @@ requirements_txt:

[doc('Pin dependency versions to requirements.txt')]
pin: requirements_txt requirements_test_txt
cargo update --verbose

# }}}
# {{{ develop
Expand Down
4 changes: 2 additions & 2 deletions python/requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --universal --python-version 3.10 --extra test -o requirements-test.txt requirements.in pyproject.toml
# uv pip compile --universal --python-version 3.10 --extra test -o requirements-test.txt pyproject.toml requirements.in
colorama==0.4.6 ; sys_platform == 'win32'
# via pytest
exceptiongroup==1.2.2 ; python_full_version < '3.11'
Expand All @@ -22,7 +22,7 @@ pluggy==1.5.0
# via pytest
pytest==8.3.4
# via pymittagleffler (pyproject.toml)
ruff==0.9.3
ruff==0.9.4
# via pymittagleffler (pyproject.toml)
tomli==2.2.1 ; python_full_version < '3.11'
# via
Expand Down
3 changes: 0 additions & 3 deletions python/requirements.in

This file was deleted.

10 changes: 2 additions & 8 deletions python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --universal --python-version 3.10 -o requirements.txt requirements.in pyproject.toml
maturin==1.8.1
# via -r requirements.in
# uv pip compile --universal --python-version 3.10 -o requirements.txt pyproject.toml
numpy==2.2.2
# via
# -r requirements.in
# pymittagleffler (pyproject.toml)
tomli==2.2.1 ; python_full_version < '3.11'
# via maturin
# via pymittagleffler (pyproject.toml)

0 comments on commit ec5b014

Please sign in to comment.