Skip to content

Commit 7e44e96

Browse files
committed
New version?
1 parent 64b553f commit 7e44e96

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "conda-dependency-cleaner"
7-
version = "0.0.2"
8-
description = "Clean your conda yaml file."
7+
version = "0.0.3"
8+
description = "Clean your conda yaml file and convert pip dependencies to conda."
99
readme = "README.md"
1010
license = "MIT"
1111
authors = ["Oliver Weissl <[email protected]>", ]
@@ -21,7 +21,7 @@ classifiers = [
2121
]
2222

2323
[tool.poetry.scripts]
24-
clean-yaml = "conda_dependency_cleaner.clean:main"
24+
cdc = "conda_dependency_cleaner.cdc:main"
2525

2626
[tool.poetry.dependencies]
2727
matplotlib = "^3.0.0"

tests/test_clean.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
import subprocess
33
import tempfile
4-
from typing import Generator, Any
4+
from typing import Any, Generator
55

66
import pytest
77
from conda.env.env import Environment, from_file

0 commit comments

Comments
 (0)