From 7b71996a14de92f86340fcb9fd12b41a8e8dcb8a Mon Sep 17 00:00:00 2001 From: Hossam Hammady Date: Tue, 29 Oct 2024 17:31:46 -0400 Subject: [PATCH 1/2] Run tests for Python 3.7 --- .github/workflows/run-tests.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index 5b59f71..6ce7ef3 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -11,6 +11,7 @@ jobs: strategy: matrix: python-version: + - "3.7" - "3.8" - "3.9" - "3.10" From ca80db7e3f606ff364977149fa1dbc6bb65f9f37 Mon Sep 17 00:00:00 2001 From: Hossam Hammady Date: Tue, 29 Oct 2024 17:51:41 -0400 Subject: [PATCH 2/2] Reduce min req to Python 3.7 --- setup.cfg | 5 +++-- setup.py | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index c930351..11aa855 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rubydj-pyworker -version = 1.1.0 +version = 1.2.1 description = A pure Python worker for Ruby-based DelayedJobs with Newrelic reporting. long_description = file: README.md long_description_content_type = text/markdown @@ -16,6 +16,7 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only + Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -27,7 +28,7 @@ classifiers = [options] include_package_data = true packages = find: -python_requires = >=3.8 +python_requires = >=3.7 install_requires = psycopg2-binary >= 2 python-dateutil >= 2 diff --git a/setup.py b/setup.py index 565d79f..0d5f1d4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name = "rubydj-pyworker", - version = '1.2.0', + version = '1.2.1', description="A pure Python worker for Ruby-based DelayedJobs with Newrelic reporting.", author="Rayyan Systems, Inc.", author_email="support@rayyan.ai",