Skip to content

Commit

Permalink
Update dependencies in pyproject.toml and setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzhangs committed Apr 27, 2024
1 parent 11604ba commit d7d7897
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = [
# 20210314 - py2.7 - workaround for: ERROR: Could not find a version that satisfies the requirement django-timezone-field<5.0,>=4.1.0 (from django-celery-beat->-r requirements.txt (line 10)) (from versions: 0.3.1, 0.3.2, 0.4, 1.0, 1.1, 1.2, 1.3, 2.0rc1, 2.0, 2.1, 3.0rc1, 3.0, 3.1)
"django-celery-beat==1.6.0; python_version <= '2.7'",
# 20240319 - py3.8 - workaround for: Exception: django-celery-beat 2.6.0 requires CPython 3.8 or later!
"django-celery-beat<2.6.0; python_version < '3.8'",
"django-celery-beat<2.6.0; python_version > '2.7' and python_version < '3.8'",
"django-celery-beat; python_version >= '3.8'",

# 20210917 - py2.7 - workaround for: ERROR: django-celery-results 2.2.0 requires celery<6.0,>=5.0, but you'll have celery 4.4.7 which is incompatible.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ install_requires =
# 20210314 - py2.7 - workaround for: ERROR: Could not find a version that satisfies the requirement django-timezone-field<5.0,>=4.1.0 (from django-celery-beat->-r requirements.txt (line 10)) (from versions: 0.3.1, 0.3.2, 0.4, 1.0, 1.1, 1.2, 1.3, 2.0rc1, 2.0, 2.1, 3.0rc1, 3.0, 3.1)
django-celery-beat==1.6.0; python_version <= '2.7'
# 20240319 - py3.8 - workaround for: Exception: django-celery-beat 2.6.0 requires CPython 3.8 or later!
django-celery-beat<2.6.0; python_version < '3.8'
django-celery-beat<2.6.0; python_version > '2.7' and python_version < '3.8'
django-celery-beat; python_version >= '3.8'

# 20210917 - py2.7 - workaround for: ERROR: django-celery-results 2.2.0 requires celery<6.0,>=5.0, but you'll have celery 4.4.7 which is incompatible.
Expand Down

0 comments on commit d7d7897

Please sign in to comment.