We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e02702 commit 6d524c4Copy full SHA for 6d524c4
.gitignore
@@ -36,6 +36,7 @@ share/python-wheels/
36
*.egg
37
MANIFEST
38
config/
39
+.pypirc
40
41
# PyInstaller
42
# Usually these files are written by a python script from a template
Dockerfile
@@ -5,7 +5,9 @@ RUN apt-get update && apt-get install make
5
WORKDIR /app
6
7
COPY Pipfile .
8
+
9
RUN pip install pipenv
-RUN pipenv install
10
+RUN pipenv install --dev
11
RUN echo 'pipenv shell' >> ~/.bashrc
12
13
COPY . .
yaylib/__init__.py
@@ -14,7 +14,7 @@
14
__author__ = "ekkx"
15
__license__ = "MIT"
16
__copyright__ = "Copyright (c) 2023 ekkx"
17
-__version__ = "1.4.14"
+__version__ = "1.4.15"
18
19
from .client import Client
20
from .cookie import Cookie
0 commit comments