Skip to content

Commit 9310e6f

Browse files
authored
Merge pull request #581 from nats-io/update-pythons
Update Pythons
2 parents 981e5d6 + 97cab06 commit 9310e6f

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

.travis.yml

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,18 @@ dist: jammy
2929

3030
jobs:
3131
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]
3242
- name: "Python: 3.12"
33-
python: "3.12-dev"
43+
python: "3.12"
3444
before_install:
3545
- sudo apt update && sudo apt install gcc build-essential -y
3646
- sudo apt-get install python3-pip
@@ -72,22 +82,10 @@ jobs:
7282
- bash ./scripts/install_nats.sh
7383
install:
7484
- 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
8785
allow_failures:
88-
- name: "Python: 3.7"
8986
- name: "Python: 3.8"
9087
- name: "Python: 3.11"
9188
- name: "Python: 3.11/uvloop"
9289
- name: "Python: 3.11 (nats-server@main)"
9390
- name: "Python: 3.12"
91+
- name: "Python: 3.13"

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ classifiers = [
2121
'Programming Language :: Python :: 3.8',
2222
'Programming Language :: Python :: 3.9',
2323
'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'
2527
]
2628

2729
[project.urls]

scripts/install_nats.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
export DEFAULT_NATS_SERVER_VERSION=v2.10.17-RC.8
5+
export DEFAULT_NATS_SERVER_VERSION=v2.10.17
66

77
export NATS_SERVER_VERSION="${NATS_SERVER_VERSION:=$DEFAULT_NATS_SERVER_VERSION}"
88

0 commit comments

Comments
 (0)