Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump dependency version lower bounds #215

Merged
merged 2 commits into from
Oct 29, 2024
Merged
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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
run: uv run ruff check --output-format=github
- name: Stubtest
run: uv run task stubtest
- name: Pytest with lowest direct dependencies
run: |
uv sync --no-dev --group test --resolution lowest-direct
uv run pytest
- name: Check cargo dependencies
uses: EmbarkStudios/cargo-deny-action@v2

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: MIT License",
]
dependencies = ["matplotlib>=3.0.0", "numpy>=1.16.0"]
dependencies = ["matplotlib>=3.5.0", "numpy>=1.19.3"]

[project.urls]
Documentation = "https://bosing.readthedocs.io"
Expand All @@ -34,7 +34,7 @@ features = ["pyo3/extension-module"]
[dependency-groups]
dev = [
"ipython>=8.18.1",
"pyside6>=6.8.0.1",
"pyside6>=6.3",
{ include-group = "docs" },
{ include-group = "ci" },
]
Expand All @@ -52,7 +52,7 @@ docs = [
task = ["taskipy>=1.13.0"]
lint = ["mypy>=1.11.2", "ruff>=0.6.7"]
test = ["rich>=13.9.2", "pytest>=8.3.3"]
examples = ["scipy>=1.13.1"]
examples = ["scipy>=1.9.3"]

[tool.uv]
cache-keys = [
Expand Down
3 changes: 3 additions & 0 deletions tests/test_plot.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import matplotlib as mpl

mpl.use("Agg")
from matplotlib.figure import Figure

from bosing import Barrier, Play, ShiftPhase, Stack
Expand Down
16 changes: 8 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.