Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[change] Update tested versions #332

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

adamchainz
Copy link

Checklist

  • I have read the OpenWISP Contributing Guidelines.
  • I have manually tested the changes proposed in this pull request.
  • I have written new test cases for new code and/or updated existing tests for changes to existing code.
  • I have updated the documentation.

Reference to Existing Issue

n/a

Description of Changes

Make these version changes:

  1. Add Python 3.13.
  2. Add Django 5.2 (currently in beta, expected April).

Also:

  1. Declare the the Django version dependency in setup.py.
  2. Update openwisp-utils to install from GitHub’s tarball URLs. The lack of suffix caused issues for me with uv via tox-uv.
  3. Drop parallel testing - it was slower for me, 2s versus 1s.

Screenshot

n/a

Make these version changes:

1. Add Python 3.13.
2. Add Django 5.2 (currently in beta, [expected April](https://docs.djangoproject.com/en/5.2/releases/5.2/)).

Also:

1. Declare the the Django version dependency in `setup.py`.
2. Update openwisp-utils to install from GitHub’s tarball URLs. The lack of suffix caused issues for me with [uv](https://docs.astral.sh/uv/) via [tox-uv](https://pypi.org/project/tox-uv/).
3. Drop parallel testing - it was slower for me, 2s versus 1s.
@adamchainz
Copy link
Author

Sigh... the install step is broken on Python 3.13 because coveralls pins to Python <3.13 and hasn't removed that yet. Pending PR: TheKevJames/coveralls-python#542 .

I didn't see this locally because I use tox with uv, via tox-uv. They deliberately ignore upper version bounds on Python: astral-sh/uv#4022 . Would you be interested in converting the testing to uv? It wouldn't take much more than installing tox-uv.

Copy link
Contributor

@pauloxnet pauloxnet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working on this.

It seems CI action fails because coveralls doesn't support Python 3.13 yet and doesn't seem well maintained.

It can be a good idea to drop it, enforcing 100% test coverage using coverage report --fail-under=xx, like in this other PR https://github.com/kipe/pycron/pull/41/files

django42: Django~=4.2.0
django50: Django~=5.0.0
django51: Django~=5.1.0
django42: Django~=4.2a1
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm interested in the motivation to use alpha version of Django here

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The ~ means “compatible with”. It still picks the latest version, just from alpha onwards rather than the GA release onwards.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I currently use ~= but usually starting with the first stable version (e.g. django~=4.2.0). I was curious about the motivation to include also alpha version (e.g. django~=4.2a1). What's the benefit?

@adamchainz
Copy link
Author

It can be a good idea to drop it, enforcing 100% test coverage using coverage report --fail-under=xx, like in this other PR https://github.com/kipe/pycron/pull/41/files

Yes, will do

Copy link
Member

@devkapilbansal devkapilbansal left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @adamchainz PR title should be descriptive enough to know the changes done. Also, reference the issue in PR description and commit message. Do follow these guidelines:
https://openwisp.io/docs/dev/developer/contributing.html

@@ -2,4 +2,4 @@ psycopg2~=2.9.10
django-filter>=2.0
contexttimer
# QA checks
openwisp-utils[qa] @ https://github.com/openwisp/openwisp-utils/tarball/1.2
openwisp-utils[qa] @ git+https://github.com/openwisp/openwisp-utils@1.1.1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this change is made? We shouldn't pin the version in test dependencies

@@ -14,12 +15,13 @@ setenv =
DRFG_TEST_RUNNER=./tests/manage.py test
pytest: DRFG_TEST_RUNNER=-m pytest
commands =
coverage run {env:DRFG_TEST_RUNNER} {posargs:tests/django_restframework_gis_tests} --parallel
coverage run {env:DRFG_TEST_RUNNER} {posargs:tests/django_restframework_gis_tests}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this parallel flag is removed? Kindly follow the guidelines
https://openwisp.io/docs/dev/developer/contributing.html#avoiding-unnecessary-changes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: To do (general)
Development

Successfully merging this pull request may close these issues.

3 participants