Skip to content

Commit

Permalink
unpinning deps in pyproject toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vineetbansal committed Sep 20, 2024
1 parent deaada0 commit 87db2ef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test_pinned_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
environment-file: environment.yml

- name: Install package
run: pip install .
# Note: editable install for the coverage step to pick up source
# correctly. (coverage run --source=src/paste3 -m pytest)
run: pip install -e .

- name: Pre-commit checks
run: pre-commit run --all-files
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test_unpinned_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@ name: Test Unpinned Dependencies
on:
push:
branches: [ main ]
pull_request_target:
types: [ opened, edited]
pull_request:
branches: [ main ]
paths: ['pyproject.toml', 'requirements.txt']

jobs:
build_wheels:
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ classifiers = [
]

dependencies = [
"anndata==0.10.8",
"scanpy==1.10.2",
"anndata",
"scanpy",
"POT",
"numpy",
"scipy",
"scikit-learn==1.5.1",
"IPython>=7.18.1",
"statsmodels==0.14.2"
"scikit-learn",
"IPython",
"statsmodels"
]
dynamic = ["version"]

Expand Down

0 comments on commit 87db2ef

Please sign in to comment.