From ba09a1f77931776860e80ce1766d1082211f847f Mon Sep 17 00:00:00 2001 From: "Remi GASCOU (Podalirius)" <79218792+p0dalirius@users.noreply.github.com> Date: Wed, 16 Oct 2024 10:47:53 +0200 Subject: [PATCH] Release 1.4.4 --- .github/workflows/python-pip-build.yml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-pip-build.yml b/.github/workflows/python-pip-build.yml index 28dc114..c2ddeec 100644 --- a/.github/workflows/python-pip-build.yml +++ b/.github/workflows/python-pip-build.yml @@ -19,10 +19,10 @@ jobs: steps: - uses: actions/checkout@v3 - - name: Set up Python 3.7 + - name: Set up Python 3.11 uses: actions/setup-python@v3 with: - python-version: "3.7" + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index e95119e..0bd324e 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setuptools.setup( name="sectools", - version="1.4.3", + version="1.4.4", description="", url="https://github.com/p0dalirius/sectools", author="Podalirius", @@ -29,6 +29,6 @@ "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", ], - python_requires='>=3.6', + python_requires='>=3.11', install_requires=requirements, )