File tree Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
# run static analysis on bleeding and trailing edges
12
- python-version : [ '3.8', '3.10 ', '3.12' ]
12
+ python-version : [ '3.9 ', '3.12' ]
13
13
django-version :
14
- - ' 3.2' # LTS April 2024
15
14
- ' 4.2' # LTS April 2026
16
15
- ' 5.1' # December 2025
17
16
exclude :
18
- - python-version : ' 3.8 '
17
+ - python-version : ' 3.9 '
19
18
django-version : ' 5.1'
20
- - python-version : ' 3.10'
21
- django-version : ' 5.1'
22
- - python-version : ' 3.12'
23
- django-version : ' 3.2'
24
- - python-version : ' 3.10'
25
- django-version : ' 3.2'
26
- - python-version : ' 3.8'
27
- django-version : ' 4.2'
28
19
- python-version : ' 3.12'
29
20
django-version : ' 4.2'
30
21
Original file line number Diff line number Diff line change 5
5
workflow_dispatch :
6
6
inputs :
7
7
debug :
8
- description : ' Set to on, to open ssh debug session.'
8
+ description : ' Open ssh debug session.'
9
9
required : true
10
- default : ' off'
10
+ default : false
11
+ type : boolean
11
12
schedule :
12
13
- cron : ' 0 13 * * *' # Runs at 6 am pacific every day
13
14
@@ -509,8 +510,8 @@ jobs:
509
510
timeout-minutes : 60
510
511
- name : Install Oracle Client
511
512
run : |
512
- curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/2111000 /oracle-instantclient-basiclite-21.11 .0.0.0-1.el8.x86_64.rpm
513
- sudo apt install alien libaio1
513
+ curl --output oracle-client.rpm https://download.oracle.com/otn_software/linux/instantclient/2116000 /oracle-instantclient-basiclite-21.16 .0.0.0-1.el8.x86_64.rpm
514
+ sudo apt install alien
514
515
sudo alien -i oracle-client.rpm
515
516
sudo sh -c 'echo /usr/lib/oracle/21/client64/lib/ > /etc/ld.so.conf.d/oracle.conf'
516
517
sudo ldconfig
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ numpy = [
82
82
{version = " >=1.25" , markers = " python_version >= '3.9'" }
83
83
]
84
84
django-stubs = {extras = [" compatible-mypy" ], version = " >=4.2.7" }
85
+ django-stubs = [
86
+ {version = " <1.25" , markers = " python_version < '3.9'" },
87
+ {version = " >=1.25" , markers = " python_version >= '3.9'" }
88
+ ]
85
89
furo = " ^2024.8.6"
86
90
ruff = " ^0.6.3"
87
91
typing-extensions = " ^4.12.2"
You can’t perform that action at this time.
0 commit comments