Skip to content

Commit 02df79e

Browse files
authored
Merge branch 'main' into dependabot-github_actions-main-actions-setup-python-6
2 parents 5e3f08e + a2b6825 commit 02df79e

File tree

5 files changed

+15
-26
lines changed

5 files changed

+15
-26
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ jobs:
3232
runs-on: ubuntu-latest
3333
container: docker://python:3.11-buster
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v5
3636
- name: Build
3737
run: |
3838
python -m venv venv
3939
venv/bin/pip install --upgrade pip
4040
venv/bin/pip install build
4141
venv/bin/python -m build --outdir dist/
42-
- uses: actions/upload-artifact@v4
42+
- uses: actions/upload-artifact@v5
4343
if: always()
4444
with:
4545
name: dist
@@ -83,7 +83,7 @@ jobs:
8383
matrix: macos
8484
runs-on:
8585
arm: macos-latest
86-
intel: macos-13
86+
intel: macos-15-intel
8787
python_platform: darwin
8888
python:
8989
- name: CPython 2.7
@@ -262,7 +262,7 @@ jobs:
262262
reactor:
263263
tox: pyside2
264264
steps:
265-
- uses: actions/checkout@v4
265+
- uses: actions/checkout@v5
266266
- name: Enable Problem Matchers
267267
run: |
268268
echo "::add-matcher::.github/local-problem-matchers.json"
@@ -304,7 +304,7 @@ jobs:
304304
- name: Install
305305
run: |
306306
pip install tox
307-
- uses: actions/download-artifact@v5
307+
- uses: actions/download-artifact@v6
308308
with:
309309
name: dist
310310
path: dist/
@@ -322,7 +322,7 @@ jobs:
322322
- short: 311
323323
dotted: "3.11"
324324
steps:
325-
- uses: actions/checkout@v4
325+
- uses: actions/checkout@v5
326326
- name: Set up Python ${{ matrix.python.dotted }}
327327
uses: actions/setup-python@v6
328328
with:
@@ -343,7 +343,7 @@ jobs:
343343
- test
344344
- linting
345345
steps:
346-
- uses: actions/download-artifact@v5
346+
- uses: actions/download-artifact@v6
347347
with:
348348
name: dist
349349
path: dist/

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
repos:
2-
- repo: https://github.com/ambv/black
2+
- repo: https://github.com/psf/black
33
rev: stable
44
hooks:
55
- id: black

CONTRIBUTING.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,10 @@ What it takes to add a new reactor:
1717
* Add conditional ``deps`` for the new reactor such as ``foo: foobar`` to the appropriate test environments
1818
* Add ``fooreactor: pytest --reactor=foo`` to the commands list
1919

20-
* In ``.travis.yml``
20+
* In ``.github/workflows/ci.yml``
2121

2222
* Consider any extra system packages which may be required
2323

24-
* In ``appveyor.yml``
25-
26-
* Add the new reactor environment to the ``TOXENV`` for each relevant Python
27-
2824
Reference reactor additions:
2925
* `asyncio`_
3026
* `qt5reactor`_

README.rst

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
pytest-twisted - test twisted code with pytest
55
==============================================================================
66

7-
|PyPI| |Pythons| |Travis| |AppVeyor| |Actions| |Black|
7+
|PyPI| |Pythons| |Actions| |Black|
88

99
:Authors: Ralf Schmitt, Kyle Altendorf, Victor Titor
1010
:Version: 1.14.3
1111
:Date: 2024-08-21
12-
:Download: https://pypi.python.org/pypi/pytest-twisted#downloads
12+
:Download: https://pypi.org/project/pytest-twisted/#files
1313
:Code: https://github.com/pytest-dev/pytest-twisted
1414

1515

@@ -227,26 +227,18 @@ v1.9
227227

228228
.. |PyPI| image:: https://img.shields.io/pypi/v/pytest-twisted.svg
229229
:alt: PyPI version
230-
:target: https://pypi.python.org/pypi/pytest-twisted
230+
:target: https://pypi.org/project/pytest-twisted/
231231

232232
.. |Pythons| image:: https://img.shields.io/pypi/pyversions/pytest-twisted.svg
233233
:alt: Supported Python versions
234-
:target: https://pypi.python.org/pypi/pytest-twisted
235-
236-
.. |Travis| image:: https://travis-ci.org/pytest-dev/pytest-twisted.svg?branch=master
237-
:alt: Travis build status
238-
:target: https://travis-ci.org/pytest-dev/pytest-twisted
239-
240-
.. |AppVeyor| image:: https://ci.appveyor.com/api/projects/status/eb1vp9hysp463c66/branch/master?svg=true
241-
:alt: AppVeyor build status
242-
:target: https://ci.appveyor.com/project/pytestbot/pytest-twisted
234+
:target: https://pypi.org/project/pytest-twisted/
243235

244236
.. |Actions| image:: https://img.shields.io/github/workflow/status/pytest-dev/pytest-twisted/CI/master?logo=GitHub-Actions
245237
:alt: GitHub Actions build status
246238
:target: https://github.com/pytest-dev/pytest-twisted/actions?query=branch%3Amaster
247239

248240
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
249241
:alt: Black code style
250-
:target: https://github.com/ambv/black
242+
:target: https://github.com/psf/black
251243

252244
.. _guide: CONTRIBUTING.rst

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ deps=
1313
twisted
1414
py37,py38,py39,pypy37,pypy38: hypothesis
1515
pyqt5reactor,pyside2reactor: pytest-qt
16+
pyqt5reactor,pyside2reactor: pytest-qt<4.5.0; python_version >= "3.9"
1617
pyqt5reactor,pyside2reactor: pytest-xvfb
1718
pyqt5reactor,pyside2reactor: pywin32; sys_platform == 'win32'
1819
extras=

0 commit comments

Comments
 (0)