Skip to content

Commit

Permalink
feat: support Python 3.13 (#105)
Browse files Browse the repository at this point in the history
* Rebuild Cython wrapper with Cython 3.0.10
  • Loading branch information
BoboTiG authored Jun 5, 2024
1 parent fc6cc4d commit 140f39b
Show file tree
Hide file tree
Showing 14 changed files with 2,367 additions and 1,429 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: Tests

on:
pull_request
on: pull_request

jobs:
tests:
Expand All @@ -11,7 +10,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGES
=======

1.2.0 (2024-06-05)
------------------

* Added Python 3.13 support (#105).
* Rebuild Cython wrapper with Cython 3.0.10 (#105).

1.1.1 (2024-05-06)
------------------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) marisa-trie authors and contributors, 2012-2023
Copyright (c) marisa-trie authors and contributors, 2012-2024

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@

# General information about the project.
project = "marisa-trie"
copyright = "2016-2023, Mikhail Korobov & contributors"
copyright = "2016-2024, Mikhail Korobov & contributors"
author = "Mikhail Korobov & contributors"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = "1.1.1"
version = "1.2.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Information Analysis",
Expand All @@ -61,7 +62,7 @@

setup(
name="marisa-trie",
version="1.1.1",
version="1.2.0",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
Expand Down
Loading

0 comments on commit 140f39b

Please sign in to comment.