diff --git a/pyproject.toml b/pyproject.toml index 5f648fb..e301fd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "spencer.woo@outlook.com" }] -requires-python = ">=3.10,<3.13" +requires-python = ">=3.10" readme = "README.md" license = { file = "LICENSE" } keywords = ["torch", "pytorch", "torchvision", "feature-extraction"] @@ -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] diff --git a/src/torch_featurelayer/__init__.py b/src/torch_featurelayer/__init__.py index 885e918..eba9261 100644 --- a/src/torch_featurelayer/__init__.py +++ b/src/torch_featurelayer/__init__.py @@ -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']