We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54eec44 commit 8c9f9e7Copy full SHA for 8c9f9e7
3 files changed
Dockerfile
@@ -34,7 +34,8 @@ RUN if [ "$USE_LOCAL_INSTALL" = "true" ]; then \
34
COPY . /app
35
WORKDIR /app
36
RUN if [ "$USE_LOCAL_INSTALL" = "true" ]; then \
37
- pip install -e .; \
+ pip install --upgrade -e .; \
38
+ pip install --upgrade socketdev; \
39
fi
40
41
# ENTRYPOINT ["socketcli"]
pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
7
[project]
8
name = "socketsecurity"
9
-version = "2.2.25"
+version = "2.2.26"
10
requires-python = ">= 3.10"
11
license = {"file" = "LICENSE"}
12
dependencies = [
socketsecurity/__init__.py
@@ -1,3 +1,3 @@
1
__author__ = 'socket.dev'
2
-__version__ = '2.2.25'
+__version__ = '2.2.26'
3
USER_AGENT = f'SocketPythonCLI/{__version__}'
0 commit comments