diff --git a/.gitignore b/.gitignore index 92d50d9..5a042ef 100644 --- a/.gitignore +++ b/.gitignore @@ -36,6 +36,7 @@ share/python-wheels/ *.egg MANIFEST config/ +.pypirc # PyInstaller # Usually these files are written by a python script from a template diff --git a/Dockerfile b/Dockerfile index 9ca178d..e991ca8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,9 @@ RUN apt-get update && apt-get install make WORKDIR /app COPY Pipfile . + RUN pip install pipenv -RUN pipenv install +RUN pipenv install --dev RUN echo 'pipenv shell' >> ~/.bashrc + COPY . . diff --git a/yaylib/__init__.py b/yaylib/__init__.py index acaffeb..b0c82e1 100644 --- a/yaylib/__init__.py +++ b/yaylib/__init__.py @@ -14,7 +14,7 @@ __author__ = "ekkx" __license__ = "MIT" __copyright__ = "Copyright (c) 2023 ekkx" -__version__ = "1.4.14" +__version__ = "1.4.15" from .client import Client from .cookie import Cookie