Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Install lint tools
run: "pip install Pygments restructuredtext-lint"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
requested_release_tag:
description: "The tag to use for this developmental release (without `.dev` suffix) (e.g., `v2.0.2`)"
description: "The tag to use for this developmental release (without `.dev` suffix) (e.g., `v2.0.3`)"
required: true

jobs:
Expand All @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
python-version: "3.13"

- run: |
pip install packaging
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.12"
python-version: "3.13"

- uses: actions/download-artifact@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- [2.x.x](#2xx)
- [Migration from 1.x.x](#migration-from-1xx)
- [Unreleased](#unreleased)
- [Version 2.0.3](#version-203)
- [Version 2.0.2](#version-202)
- [Version 2.0.1](#version-201)
- [Version 2.0.0](#version-200)
Expand All @@ -24,6 +25,10 @@ However, starting in version 2, `backports.datetime_fromisoformat` will apply it

## Unreleased

* Nil

## Version 2.0.3

* Silenced errors when compiling against Python 3.13
* Note: `backports.datetime_fromisoformat` does nothing when used against Python 3.11+. Use `backports-datetime-fromisoformat; python_version < '3.11'` in your dependency list to avoid even downloading it in modern Pythons

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "backports-datetime-fromisoformat"
version = "2.0.2"
version = "2.0.3"
authors = [{ name = "Michael Overmeyer", email = "[email protected]" }]
description = "Backport of Python 3.11's datetime.fromisoformat"
readme = "README.rst"
Expand Down
Loading