-
Notifications
You must be signed in to change notification settings - Fork 47
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
Drop python 3.8 support and other maintenance #153
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A question and a comment, non-blocking.
run: sleep 10 && tox | ||
|
||
- name: Run Coverage | ||
if: matrix.python-version == '3.8' && matrix.toxenv=='django42' | ||
if: matrix.python-version == '3.12' && matrix.toxenv=='django42' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we support 3.11 should we also run coverage against it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've been running coverage and style only against the latest version which seems to be sufficient and hasn't caused any major issues.
@@ -25,10 +25,10 @@ validate: clean | |||
tox | |||
|
|||
test.start_elasticsearch: | |||
docker-compose up -d | |||
docker compose up -d |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like the minimum version of docker has changed, do we need a change log message?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's no changelog file in this repo but I'll mention it in the release notes when I release the new version.
Without this change we were getting a weird error that the 'install' package could not be found because github action was combining the two lines into a single `pip install setuptools pip install -r requirements/ci.txt` call.
3adc2ff
to
797a862
Compare
make upgrade
with Python 3.11