From d7adb133ab5277413ae25180f68d52e824df52fa Mon Sep 17 00:00:00 2001 From: Justin Angel Date: Wed, 30 Aug 2023 09:51:00 -0400 Subject: [PATCH] adjusting versions --- .gitignore | 1 + docker/Dockerfile | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 14dafd6..b6d44ed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.idea *.swp *.swn *.swo diff --git a/docker/Dockerfile b/docker/Dockerfile index 6a1b0c3..1b11a91 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM python:latest +FROM python:3.9.2 COPY . /opt/bl-bfg RUN pip3 install /opt/bl-bfg/ WORKDIR /bfg diff --git a/setup.py b/setup.py index d2c4e91..44362f5 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setuptools.setup( name='bl-bfg', - version='1.0.2', + version='1.0.3', author='Justin Angel', author_email='justin@arch4ngel.ninja', description='A password guessing framework.', @@ -33,5 +33,5 @@ 'pyyaml', 'xmltodict', 'dict-toolbox', - 'pydantic'] + 'pydantic == 1.10.12'] )