Skip to content

Commit a7fae84

Browse files
Merge pull request #36 from cooperwalbrun/python3.13
Add Python 3.13 as a Build Target
2 parents d772b7e + c3b1188 commit a7fae84

File tree

7 files changed

+16
-7
lines changed

7 files changed

+16
-7
lines changed

.github/workflows/master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
max-parallel: 4
1212
matrix:
13-
python-version: ["3.10", "3.11", "3.12"]
13+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1414
steps:
1515
- name: Checkout source code
1616
uses: actions/checkout@v4

.github/workflows/pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
max-parallel: 4
1313
matrix:
14-
python-version: ["3.10", "3.11", "3.12"]
14+
python-version: ["3.10", "3.11", "3.12", "3.13"]
1515
steps:
1616
- name: Checkout source code
1717
uses: actions/checkout@v4

.github/workflows/tags.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- name: Checkout source code
1212
uses: actions/checkout@v4
13-
- name: Set up Python 3.12
13+
- name: Set up Python 3.13
1414
uses: actions/setup-python@v5
1515
with:
16-
python-version: "3.12"
16+
python-version: "3.13"
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
Nothing currently!
1111

12+
## v0.6.3 - 2025-05-26
13+
14+
### Added
15+
16+
* Python 3.13 is now an official build target with corresponding pipeline assurances (by
17+
[@cooperwalbrun](https://github.com/cooperwalbrun))
18+
1219
## v0.6.2 - 2024-02-13
1320

1421
### Fixed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ Total 40960
8585
```
8686

8787
With the `--prefix` argument, we can now query our available network space to our desired level of
88-
detail. Note that if we specify a `--prefix` with a value lower than any of the prefixes in the
89-
available CIDRs list, those CIDRs will be skipped. For example, if we run the following:
88+
detail. Keep in mind that if we specify a `--prefix` with a value lower than any of the prefixes in
89+
the available CIDRs list, those CIDRs will be skipped. For example, if we run the following:
9090

9191
```bash
9292
aws-cidr-finder --profile myprofile --prefix 18

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ classifiers =
1111
Programming Language :: Python :: 3.10
1212
Programming Language :: Python :: 3.11
1313
Programming Language :: Python :: 3.12
14+
Programming Language :: Python :: 3.13
1415
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
1516
Operating System :: OS Independent
1617

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py310,py311,py312
2+
envlist = py310,py311,py312,py313
33
isolated_build = True
44

55
[testenv]
@@ -15,3 +15,4 @@ python =
1515
3.10: py310
1616
3.11: py311
1717
3.12: py312
18+
3.13: py313

0 commit comments

Comments
 (0)