File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 4
4
branches : [master]
5
5
pull_request :
6
6
branches : [master]
7
+ workflow_dispatch :
8
+ schedule :
9
+ - cron : " 0 10 * * *"
7
10
8
11
concurrency :
9
12
group : ${{ github.ref }}
13
16
static-analysis :
14
17
runs-on : ubuntu-latest
15
18
steps :
16
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v4
17
20
- name : Set up Python 3.11
18
- uses : actions/setup-python@v2
21
+ uses : actions/setup-python@v4
19
22
with :
20
23
python-version : " 3.11"
21
24
-
uses :
pre-commit/[email protected]
@@ -37,12 +40,12 @@ jobs:
37
40
- " 3.9"
38
41
- " 3.10"
39
42
- " 3.11"
40
- - " 3.12.0-beta.1 "
43
+ - " 3.12"
41
44
42
45
steps :
43
- - uses : actions/checkout@v2
46
+ - uses : actions/checkout@v4
44
47
- name : " Set up Python ${{ matrix.python-version }}"
45
- uses : actions/setup-python@v2
48
+ uses : actions/setup-python@v4
46
49
with :
47
50
python-version : " ${{ matrix.python-version }}"
48
51
- if : matrix.config == 'valgrind' || matrix.config == 'pytest-benchmark'
Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ classifiers = [
35
35
" Typing :: Typed" ,
36
36
]
37
37
dependencies = [
38
- " cffi ~ = 1.15.1" ,
38
+ " cffi > = 1.15.1" ,
39
39
" pytest>=3.8" ,
40
- " filelock ~ = 3.12.2" ,
40
+ " filelock > = 3.12.2" ,
41
41
" setuptools ~= 67.8.0; python_full_version >= '3.12.0b1'" , # FIXME: remove when cffi supports directly python 3.12
42
42
]
43
43
You can’t perform that action at this time.
0 commit comments