Skip to content

Commit d7caaf4

Browse files
Merge branch 'main' into move-away-from-datetime.utcfromtimestamp
2 parents e0ef0a7 + 4601f8a commit d7caaf4

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/pypi-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ jobs:
1818
contents: read
1919

2020
steps:
21-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
21+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222
with:
2323
ref: ${{ github.event.release.tag_name || github.ref }}
2424
persist-credentials: false
2525

2626
- name: Set up Python
27-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
27+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2828
with:
2929
python-version: "3.x"
3030

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121
permissions:
2222
contents: read
2323
steps:
24-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2525
with:
2626
persist-credentials: false
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
28+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Run mypy verification
@@ -54,11 +54,11 @@ jobs:
5454
CI_LARGE_SOCKET_MODE_PAYLOAD_TESTING_DISABLED: "1"
5555
FORCE_COLOR: "1"
5656
steps:
57-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
57+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
5858
with:
5959
persist-credentials: false
6060
- name: Set up Python ${{ matrix.python-version }}
61-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
61+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
6262
with:
6363
python-version: ${{ matrix.python-version }}
6464
cache: pip

requirements/documentation.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
docutils==0.22.2
1+
docutils==0.22.3
22
pdoc3==0.11.6

requirements/tools.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
mypy<=1.18.2
1+
# We only need to install mypy with CPython runtimes
2+
# Typechecking using the PyPy runtime is not planned
3+
mypy<=1.19.0; platform_python_implementation == "CPython"
24
# while flake8 5.x have issues with Python 3.12, flake8 6.x requires Python >= 3.8.1,
35
# so 5.x should be kept in order to stay compatible with Python 3.7/3.8
46
flake8>=5.0.4,<8

0 commit comments

Comments
 (0)