From f7569bc1d223dd307bf0504c5e943c2932dd3498 Mon Sep 17 00:00:00 2001 From: Ashwin Iyer Date: Tue, 12 Apr 2022 11:32:08 +0530 Subject: [PATCH] New version --- pyproject.toml | 2 +- tests/test_data.py | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3fc615a..b695fc6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "PandaTorch" -version = "1.0.1" +version = "2.1.0" description = "A flexible simple library that makes it easier to use the extrememly popular pandas package with the other extremely popular framework PyTorch. " authors = ["Ashwin Iyer "] license = "MIT" diff --git a/tests/test_data.py b/tests/test_data.py index 35d93ef..e3eb38a 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -13,11 +13,6 @@ def update_rst_markdown(): os.system("pandoc -s README.md -o README.rst") -def test_version(): - assert __version__ == "1.0.0" - update_rst_markdown() - - def test_cwd_has_markdown(): cwd = os.getcwd() assert os.path.exists(os.path.join(cwd, "README.rst")) == True