Skip to content

Commit

Permalink
Merge pull request #119 from jdenholm/dev
Browse files Browse the repository at this point in the history
Requirement issue
  • Loading branch information
jdenholm authored Feb 10, 2024
2 parents 3f81949 + 9644011 commit 87e5c84
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## Version 0.10.1
- Made Scikit Image a requirement of ``torch_tools`` rather than just having it in the dev env; the shapes dataset needs it.

## Version 0.10.0
- Updated ``torch_tools.weight_init.normal_init`` with options for which attrs get initialised.

Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,15 @@ build-backend = "setuptools.build_meta"

[project]
name = "torch_tools"
version = "0.10.0"
version = "0.10.1"
description = "PyTorch and other tools"
authors = [
{ name="Jim Denholm", email="j.denholm.2017@gmail.com" },
]
readme = "README.md"
license = {file = "LICENSE.md"}
requires-python = "<3.12"

dependencies = ["torch", "torchvision"]
dependencies = ["torch", "torchvision", "scikit-image"]


[project.urls]
Expand Down
3 changes: 1 addition & 2 deletions requirements-dev.conda.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: torch-tools
channels:
- main
dependencies:
- python<3.12
- python<=3.12
- pip
- pip:
- sphinx
Expand All @@ -11,7 +11,6 @@ dependencies:
- scikit-learn
- pandas
- matplotlib
- scikit-image
- palmerpenguins
- black
- black-nb
Expand Down

0 comments on commit 87e5c84

Please sign in to comment.