From 25f8600e8666349683b0dbc6b5231b552ce1db33 Mon Sep 17 00:00:00 2001 From: Gaurav Mishra Date: Wed, 14 Oct 2020 14:40:25 +0530 Subject: [PATCH] chore(atarashi): Bump version to 0.0.11 Bump atarashi to version 0.0.11 to push new version to PyPi with Nirjas. Also, remove code_comment from Dockerfile. Signed-off-by: Gaurav Mishra --- Dockerfile | 5 ++--- atarashi/atarashii.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index c5ebfad..fcf842c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,6 @@ COPY . . RUN mkdir wheels RUN python -m pip wheel --use-pep517 --wheel-dir wheels . -RUN python -m pip wheel --use-pep517 --wheel-dir wheels code_comment@git+https://github.com/amanjain97/code_comment@master#egg=code_comment FROM python:3.7-slim @@ -39,8 +38,8 @@ WORKDIR /home/atarashi COPY --from=builder /atarashi/wheels/ . -RUN python -m pip install *.whl \ - && rm *.whl +RUN python -m pip install ./*.whl \ + && rm ./*.whl USER atarashi diff --git a/atarashi/atarashii.py b/atarashi/atarashii.py index ce233ba..2540491 100644 --- a/atarashi/atarashii.py +++ b/atarashi/atarashii.py @@ -30,7 +30,7 @@ __author__ = "Aman Jain" __email__ = "amanjain5221@gmail.com" -__version__ = "0.0.10" +__version__ = "0.0.11" def atarashii_runner(inputFile, processedLicense, agent_name, similarity="CosineSim", ngramJsonLoc=None, verbose=None): diff --git a/setup.py b/setup.py index d41f85f..5177656 100755 --- a/setup.py +++ b/setup.py @@ -112,7 +112,7 @@ def run(self): metadata = dict( name = "atarashi", - version = "0.0.10", + version = "0.0.11", author = "Aman Jain", author_email = "amanjain5221@gmail.com", description = ("An intelligent license scanner."),