Skip to content

Commit f13e157

Browse files
fix: Loosen runtime requirements
1 parent 367ef47 commit f13e157

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches: [master]
55
pull_request:
66
branches: [master]
7+
workflow_dispatch:
78

89
concurrency:
910
group: ${{ github.ref }}
@@ -13,9 +14,9 @@ jobs:
1314
static-analysis:
1415
runs-on: ubuntu-latest
1516
steps:
16-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v4
1718
- name: Set up Python 3.11
18-
uses: actions/setup-python@v2
19+
uses: actions/setup-python@v4
1920
with:
2021
python-version: "3.11"
2122
- uses: pre-commit/[email protected]
@@ -37,12 +38,12 @@ jobs:
3738
- "3.9"
3839
- "3.10"
3940
- "3.11"
40-
- "3.12.0-beta.1"
41+
- "3.12"
4142

4243
steps:
43-
- uses: actions/checkout@v2
44+
- uses: actions/checkout@v4
4445
- name: "Set up Python ${{ matrix.python-version }}"
45-
uses: actions/setup-python@v2
46+
uses: actions/setup-python@v4
4647
with:
4748
python-version: "${{ matrix.python-version }}"
4849
- if: matrix.config == 'valgrind' || matrix.config == 'pytest-benchmark'

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ classifiers = [
3535
"Typing :: Typed",
3636
]
3737
dependencies = [
38-
"cffi ~= 1.15.1",
38+
"cffi >= 1.15.1",
3939
"pytest>=3.8",
40-
"filelock ~= 3.12.2",
40+
"filelock >= 3.12.2",
4141
"setuptools ~= 67.8.0; python_full_version >= '3.12.0b1'", # FIXME: remove when cffi supports directly python 3.12
4242
]
4343

0 commit comments

Comments
 (0)