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" 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",