summary refs log tree commit diff
path: root/.ci/scripts/calculate_jobs.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove support for PostgreSQL 11 and 12 (#18034)Patrick Cloke2024-12-191-1/+1
| | | | | | | This is essentially matrix-org/synapse#14392. I didn't see anything in there about updating sytest or complement. The main driver of this is so that I can use `jsonb_path_exists` in #17488. 😄
* Remove support for python 3.8 (#17908)Devon Hudson2024-11-061-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ### Pull Request Checklist <!-- Please read https://element-hq.github.io/synapse/latest/development/contributing_guide.html before submitting your pull request --> * [X] Pull request is based on the develop branch * [X] Pull request includes a [changelog file](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#changelog). The entry should: - Be a short description of your change which makes sense to users. "Fixed a bug that prevented receiving messages from other servers." instead of "Moved X method from `EventStore` to `EventWorkerStore`.". - Use markdown where necessary, mostly for `code blocks`. - End with either a period (.) or an exclamation mark (!). - Start with a capital letter. - Feel free to credit yourself, by adding a sentence "Contributed by @github_username." or "Contributed by [Your Name]." to the end of the entry. * [X] [Code style](https://element-hq.github.io/synapse/latest/code_style.html) is correct (run the [linters](https://element-hq.github.io/synapse/latest/development/contributing_guide.html#run-the-linters)) --------- Co-authored-by: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com>
* Ensure Python 3.13 and PostgreSQL 17 compatibility (#17752)Quentin Gliech2024-10-221-3/+3
| | | | | | | This adds Python 3.13.0 to the trial test matrix Also updates `cffi` and `zope.interface` in the locked dependencies to make sure we have versions compatible with Python 3.13. For some reasons, they are not being picked up by dependabot.
* Update license headersPatrick Cloke2023-11-211-10/+16
|
* Test against Python 3.12 release (#16511)Patrick Cloke2023-10-171-2/+2
|
* Test against PostgreSQL 16. (#16351)Patrick Cloke2023-09-181-1/+1
|
* Upgrade CI run of Python 3.12 from rc1 to rc2 (#16280)V024602023-09-081-1/+1
|
* Prepare unit tests for Python 3.12 (#16099)V024602023-08-251-2/+1
|
* Stop running sytest on buster/python3.7 (#15892)Shay2023-07-071-5/+0
|
* Remove support for Python 3.7 (#15851)Eric Eastwood2023-07-051-5/+6
| | | Fix https://github.com/matrix-org/synapse/issues/15836
* Add Sytest jobs with the asyncio reactor enabled (#14101)Quentin Gliech2023-03-021-0/+15
|
* Test against PostgreSQL 15 in CI (#14394)Sean Quah2022-11-091-1/+1
| | | | | Resolves #14170. Signed-off-by: Sean Quah <seanq@matrix.org>
* Remove support for PostgreSQL 10 (#14392)Sean Quah2022-11-081-1/+1
| | | Signed-off-by: Sean Quah <seanq@matrix.org>
* Revert a testing commit from #13812David Robertson2022-11-011-3/+3
| | | | It (4f5d492cd6a9438de03d1b768f4c220cb662ac06) should have been reverted before the merge to develop.
* Run trial tests against Python 3.11 (#13812)David Robertson2022-11-011-5/+5
|
* Deal with some GHA deprecation warnings (#14216)David Robertson2022-10-181-2/+9
|
* Reduce number of CI jobs run on PRs (#13713)Erik Johnston2022-09-051-0/+128
* Reduce number of CI jobs run on PRs * Newsfile * Also limit sytest jobs * Fix typo * Fix up * Fixup