Skip to content

Commit

Permalink
Merge pull request #244 from neutrinoceros/dep/lower_bounds
Browse files Browse the repository at this point in the history
DEP: add missing dependency lower bounds and test them
  • Loading branch information
neutrinoceros authored Feb 12, 2025
2 parents 5c803ca + bfbed3a commit 616dca9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:
python-version:
- '3.10'
- '3.13'
include:
- os: ubuntu-22.04
python-version: 3.10.0
sync-args: --resolution=lowest-direct

runs-on: ${{ matrix.os }}
timeout-minutes: 30
Expand All @@ -33,7 +37,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Build
run: uv sync --no-editable --group test
run: uv sync --no-editable --group test ${{ matrix.sync-args }}
- name: Run tests
run: uv run --no-sync pytest --color=yes

Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ classifiers = [
]
requires-python = ">=3.10"
dependencies = [
"astropy>=5.0",
"astroquery",
"corner",
"emcee",
"h5py",
"matplotlib",
"numpy",
"astropy>=5.0.1",
"astroquery>=0.4.4",
"corner>=2.2.1",
"emcee>=3.1.1",
"h5py>=3.6.0",
"matplotlib>=3.5.0",
"numpy>=1.21.2",
"pypdf>=3.2.0",
"rich>=13.5.2",
"scipy",
"uncertainties",
"scipy>=1.7.2",
"uncertainties>=3.1.6",
]

[project.readme]
Expand Down
18 changes: 9 additions & 9 deletions uv.lock

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

0 comments on commit 616dca9

Please sign in to comment.