-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve eval_model_on_test; packaging updates
Signed-off-by: Emanuele Ballarin <[email protected]>
- Loading branch information
1 parent
67d30c7
commit 846e8fe
Showing
2 changed files
with
34 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ def read(fname): | |
|
||
setup( | ||
name=PACKAGENAME, | ||
version="0.25.9", | ||
version="0.25.10", | ||
author="Emanuele Ballarin", | ||
author_email="[email protected]", | ||
url="https://github.com/emaballarin/ebtorch", | ||
|
@@ -45,7 +45,7 @@ def read(fname): | |
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
], | ||
python_requires=">=3.10", | ||
python_requires=">=3.11", | ||
install_requires=[ | ||
"advertorch>=0.2.4", # pip install git+https://github.com/BorealisAI/advertorch.git | ||
"matplotlib>=3.8", | ||
|
@@ -59,6 +59,6 @@ def read(fname): | |
"torchvision>=0.15", | ||
"tqdm>=4.65", | ||
], | ||
include_package_data=True, | ||
zip_safe=False, | ||
include_package_data=False, | ||
zip_safe=True, | ||
) |