Skip to content

Commit

Permalink
Support Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
evroon committed Nov 1, 2024
1 parent 7a451dd commit 05c3c92
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ blocks:
# Semaphore does not have python3.12, so we run the tests using a Dockerfile
- "sudo docker build --build-arg PYTHON_VERSION=3.12.1 -t py312 . && sudo docker run py312"

- name: "Unit tests 3.13"
commands:
# Semaphore does not have python3.13, so we run the tests using a Dockerfile
- "sudo docker build --build-arg PYTHON_VERSION=3.13.0 -t py313 . && sudo docker run py313"

- name: "Typing"
commands:
- "export PUBLISH_JUNIT_REPORT=true" # Export junit report from this job
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
1.3.1
-----

Released 2024-11-11.

**Breaking changes**:

- None

Release highlights:

- Adds support for python 3.13.

1.3.0
-----

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Typing :: Typed'
]
dependencies = []
Expand Down
2 changes: 1 addition & 1 deletion src/heliclockter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

tz_local = cast(ZoneInfo, _datetime.datetime.now().astimezone().tzinfo)

__version__ = '1.3.0'
__version__ = '1.3.1'


DateTimeTzT = TypeVar('DateTimeTzT', bound='datetime_tz')
Expand Down

0 comments on commit 05c3c92

Please sign in to comment.