File tree Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Expand file tree Collapse file tree 3 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -29,8 +29,18 @@ dist: jammy
29
29
30
30
jobs :
31
31
include :
32
+ - name : " Python: 3.13"
33
+ python : " 3.13"
34
+ before_install :
35
+ - sudo apt update && sudo apt install gcc build-essential -y
36
+ - sudo apt-get install python3-pip
37
+ - sudo apt-get install python3-pytest
38
+ - pip install --upgrade pip
39
+ - bash ./scripts/install_nats.sh
40
+ install :
41
+ - pip install -e .[fast-mail-parser]
32
42
- name : " Python: 3.12"
33
- python : " 3.12-dev "
43
+ python : " 3.12"
34
44
before_install :
35
45
- sudo apt update && sudo apt install gcc build-essential -y
36
46
- sudo apt-get install python3-pip
@@ -72,22 +82,10 @@ jobs:
72
82
- bash ./scripts/install_nats.sh
73
83
install :
74
84
- pip install -e .[fast-mail-parser]
75
- - name : " Python: 3.7"
76
- python : " 3.7"
77
- before_install :
78
- - sudo apt update && sudo apt install gcc build-essential -y
79
- - sudo apt-get install python3-pip
80
- - sudo apt-get install python3-pytest
81
- - pip install --upgrade pip
82
- - bash ./scripts/install_nats.sh
83
- install :
84
- - pip install -e .[aiohttp,fast-mail-parser]
85
- script :
86
- - pytest -vv -s --continue-on-collection-errors tests
87
85
allow_failures :
88
- - name : " Python: 3.7"
89
86
- name : " Python: 3.8"
90
87
- name : " Python: 3.11"
91
88
- name : " Python: 3.11/uvloop"
92
89
- name : " Python: 3.11 (nats-server@main)"
93
90
- name : " Python: 3.12"
91
+ - name : " Python: 3.13"
Original file line number Diff line number Diff line change @@ -21,7 +21,9 @@ classifiers = [
21
21
' Programming Language :: Python :: 3.8' ,
22
22
' Programming Language :: Python :: 3.9' ,
23
23
' Programming Language :: Python :: 3.10' ,
24
- ' Programming Language :: Python :: 3.11'
24
+ ' Programming Language :: Python :: 3.11' ,
25
+ ' Programming Language :: Python :: 3.12' ,
26
+ ' Programming Language :: Python :: 3.13'
25
27
]
26
28
27
29
[project .urls ]
Original file line number Diff line number Diff line change 2
2
3
3
set -e
4
4
5
- export DEFAULT_NATS_SERVER_VERSION=v2.10.17-RC.8
5
+ export DEFAULT_NATS_SERVER_VERSION=v2.10.17
6
6
7
7
export NATS_SERVER_VERSION=" ${NATS_SERVER_VERSION:= $DEFAULT_NATS_SERVER_VERSION } "
8
8
You can’t perform that action at this time.
0 commit comments