Skip to content

Commit

Permalink
Relax dep version constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerwooo committed Sep 29, 2024
1 parent 6105aa4 commit 2b43739
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "torch-featurelayer"
description = "Useful utility functions and wrappers for hooking onto layers within PyTorch models for feature extraction."
authors = [{ name = "spencerwooo", email = "[email protected]" }]
requires-python = ">=3.10,<3.13"
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["torch", "pytorch", "torchvision", "feature-extraction"]
Expand All @@ -18,7 +18,7 @@ classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["torch>=2.0,<2.3"]
dependencies = ["torch"]
dynamic = ["version"]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/torch_featurelayer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
from torch_featurelayer.feature_layers import FeatureLayers
from torch_featurelayer.layer_candidates import get_layer_candidates

__version__ = '0.1.1'
__version__ = '0.1.2'
__all__ = ['FeatureLayer', 'FeatureLayers', 'get_layer_candidates']

0 comments on commit 2b43739

Please sign in to comment.