Skip to content

Commit 2caeb6b

Browse files
committed
Fix issues and version 0.7.2
1 parent ee9640f commit 2caeb6b

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,11 @@ agml/models/training/*.csv
164164
/
165165
*.pptx
166166
.ruff_cache
167-
test*.*
167+
*test*.*
168168
image*.png
169169
.challenges
170-
.paper
170+
.paper
171+
172+
# under development
173+
agml/data/augmentations/
174+
agml/data/exporters/pascal_voc.py

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
SHELL := bash
33

4-
version := 0.7.0
4+
version := 0.7.2
55

66
src.python := $(shell find ./agml -type f -name "*.py" || :)
77
test.python := $(shell find ./tests -type f -name "*.py" || :)

agml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.7.1"
15+
__version__ = "0.7.2"
1616
__all__ = ["data", "synthetic", "backend", "viz", "io"]
1717

1818

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ maintainers = [{ name="Amogh Joshi", email="[email protected]"}]
1313
license = {text = "Apache 2.0"}
1414
readme = "README.md"
1515
packages = [{include = "agml", from = "agml", exclude ='agml/_internal'}]
16-
version = "0.1.0"
16+
version = "0.7.2"
1717
requires-python = ">=3.8,<3.12"
1818
keywords = []
1919
classifiers = [

0 commit comments

Comments
 (0)