Skip to content

Commit c1ea0b3

Browse files
Release v0.2.0
1 parent 8777aaa commit c1ea0b3

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@ Fair and benchmark for dataset distillation.
2121

2222
*Latest News* 🔥
2323

24-
[Latest] We have fixed some bugs and released a new version of DD-Ranking. Please install the latest version via `pip install ddranking==0.1.4` or `pip install ddranking --upgrade`.
24+
[Latest] We have released the v0.2.0 version of DD-Ranking. Please install the latest version via `pip install ddranking==0.2.0` or `pip install ddranking --upgrade`.
2525

2626
<details>
2727
<summary>Unfold to see more details.</summary>
2828
<br>
2929

30+
- [2025/06] We have released the v0.2.0 version of DD-Ranking. Please install the latest version via `pip install ddranking==0.2.0` or `pip install ddranking --upgrade`.
31+
3032
- [2025/02] We have fixed some bugs and released a new version of DD-Ranking. Please update your package via `pip install ddranking==0.1.4` or `pip install ddranking --upgrade`.
3133

3234
- [2025/01] Our PyPI package is officially released! Users can now install DD-Ranking via `pip install ddranking`.
-62.8 KB
Binary file not shown.

dist/ddranking-0.1.4.tar.gz

-34.3 KB
Binary file not shown.
75.2 KB
Binary file not shown.

dist/ddranking-0.2.0.tar.gz

40.6 KB
Binary file not shown.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ readme = "README.md"
1414
requires-python = ">=3.8"
1515
dependencies = [
1616
"torch",
17-
"numpy",
17+
"numpy<2.0.0",
1818
"torchvision",
1919
"tqdm",
20-
"scipy",
20+
"scipy<1.16.0",
2121
"kornia",
2222
"timm",
2323
"pandas"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
description='DD-Ranking: Rethinking the Evaluation of Dataset Distillation',
99
long_description=open('README.md').read(), # Use your README as the long description
1010
long_description_content_type='text/markdown',
11-
author='Data Intelligence Team',
11+
author='DD-Ranking Team',
1212
author_email='[email protected]',
1313
include_dirs=['ddranking', 'configs', 'static'],
1414
include_package_data=True,
@@ -18,7 +18,7 @@
1818
'numpy',
1919
'torchvision',
2020
'tqdm',
21-
'scipy',
21+
'scipy<1.16.0',
2222
'pandas',
2323
'kornia',
2424
'timm'

0 commit comments

Comments
 (0)