Skip to content

Commit

Permalink
Fix CI (intersphinx mappings, drop Python 3.7) (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
clokep committed Jun 16, 2023
1 parent 477a4a6 commit 4bfa240
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: "actions/setup-python@v3"
with:
python-version: "3.7"
python-version: "3.8"

- name: "Install dependencies"
run: python -m pip install -r requirements/pkgutils.txt
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "pypy-3.7", "pypy-3.8"]
python-version: ["3.8", "3.9", "3.10", "pypy-3.8"]

steps:
- uses: actions/checkout@v2
Expand All @@ -81,7 +81,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox tox-gh-actions
python -m pip install --upgrade "tox<4" "tox-gh-actions<3"
- name: "Run tox targets for ${{ matrix.python-version }}"
env:
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox tox-gh-actions
python -m pip install --upgrade "tox<4" "tox-gh-actions<3"
- name: "Run tox targets"
env:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ Improvements
Maintenance
-----------

* Support Celery 5.3. (`#68 <https://github.com/clokep/celery-batches/pull/68>`_)
* Support Celery 5.3. (`#68 <https://github.com/clokep/celery-batches/pull/68>`_,
`#77 <https://github.com/clokep/celery-batches/pull/77>`_)
* Drop support for Python 3.7. (`#77 <https://github.com/clokep/celery-batches/pull/77>`_)

0.7 (2022-05-02)
================
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ What do I need?

celery-batches version runs on,

- Python (3.7, 3.8, 3.9, 3.10)
- Python (3.8, 3.9, 3.10)
- PyPy3 (7.6)

And is tested with Celery >= 4.4.
Expand All @@ -39,6 +39,7 @@ an older version of celery-batches:
- Python 3.4: celery-batches 0.2.
- Python 3.5: celery-batches 0.3.
- Python 3.6: celery-batches 0.5.
- Python 3.7: celery-batches 0.7.

If you're running an older version of Celery, you need to be running
an older version of celery-batches:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@

intersphinx_mapping = {
"python": ("https://docs.python.org/dev/", None),
"kombu": ("https://docs.celeryq.dev/projects/kombu/en/master/", None),
"celery": ("https://docs.celeryq.dev/en/master/", None),
"kombu": ("https://docs.celeryq.dev/projects/kombu/en/main/", None),
"celery": ("https://docs.celeryq.dev/en/main/", None),
}
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -36,7 +35,7 @@ project_urls =
packages =
celery_batches
install_requires = celery>=4.4,<5.3
python_requires = >=3.7
python_requires = >=3.8

[flake8]
extend-ignore = E203
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
{pypy3,3.7,3.8,3.9}-celery{44,50,51,52,master}-unit,
{pypy3,3.8,3.9}-celery{44,50,51,52,master}-unit,
# Celery 5.2 added support for Python 3.10.
3.10-celery{52,53,master}-unit,
# Integration tests.
Expand All @@ -11,7 +11,6 @@ isolated_build = True
[gh-actions]
python =
pypy-3: pypy3
3.7: 3.7
3.8: 3.8
3.9: 3.9
3.10: 3.10
Expand Down

0 comments on commit 4bfa240

Please sign in to comment.