Skip to content

Commit c8f213e

Browse files
authored
Merge pull request #375 from EasyPost/v10.3.0
chore: prep v10.3.0
2 parents f719457 + 2474d18 commit c8f213e

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
lint:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-python@v5
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-python@v6
1515
with:
16-
python-version: '3.13'
16+
python-version: '3.14'
1717
- name: Install Dependencies
1818
run: make install
1919
- name: Lint
@@ -22,10 +22,11 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25+
# vcrpy is not compatible with Python 3.14 yet so we cannot test against it
2526
pythonversion: ['3.9', '3.10', '3.11', '3.12', '3.13']
2627
steps:
27-
- uses: actions/checkout@v4
28-
- uses: actions/setup-python@v5
28+
- uses: actions/checkout@v5
29+
- uses: actions/setup-python@v6
2930
with:
3031
python-version: ${{ matrix.pythonversion }}
3132
- name: Install Dependencies
@@ -44,10 +45,10 @@ jobs:
4445
if: github.ref == 'refs/heads/master'
4546
runs-on: ubuntu-latest
4647
steps:
47-
- uses: actions/checkout@v4
48-
- uses: actions/setup-python@v5
48+
- uses: actions/checkout@v5
49+
- uses: actions/setup-python@v6
4950
with:
50-
python-version: '3.13'
51+
python-version: '3.14'
5152
- name: Install Dependencies
5253
run: make install
5354
- name: Generate Docs

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
release:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v5
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-python@v6
1414
with:
15-
python-version: '3.13'
15+
python-version: '3.14'
1616
- name: Build package
1717
run: make install build
1818
- name: Publish to PyPI

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## Next Release
3+
## v10.3.0 (2025-11-24)
44

55
- Adds the following functions:
66
- `embeddable.create_session`

easypost/constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# flake8: noqa
22
# Library version
3-
VERSION = "10.2.0"
3+
VERSION = "10.3.0"
44
VERSION_INFO = [str(number) for number in VERSION.split(".")]
55

66
# Client defaults

setup.py

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

2828
setup(
2929
name="easypost",
30-
version="10.2.0",
30+
version="10.3.0",
3131
description="EasyPost Shipping API Client Library for Python",
3232
author="EasyPost",
3333
author_email="[email protected]",

0 commit comments

Comments
 (0)