Skip to content

Commit

Permalink
Merge pull request #30 from rayyansys/python-3.7
Browse files Browse the repository at this point in the history
Add support for older Python 3.7
  • Loading branch information
hammady authored Oct 29, 2024
2 parents af5bc8d + ca80db7 commit e496b60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
Expand Down

0 comments on commit e496b60

Please sign in to comment.