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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
os: [ubuntu-latest, macos-latest, windows-latest]
install-via: [pip]
arch: [x64]
include:
- python-version: "3.13"
- python-version: "3.14"
os: macos-latest
install-via: pip
arch: arm64
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ keywords:
- sequences

license: GPLv3
version: 1.11.0
date-released: 2026-01-09
version: 1.11.1
date-released: 2026-03-03
5 changes: 2 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,8 @@ pdm install -v --dev --no-editable --no-self

## CI `circle-play`

The main CI workflows are defined in the [CI YML](https://github.com/sr-murthy/continuedfractions/blob/main/.github/workflows/ci.yml)
and the [CodeQL Analysis YML](https://github.com/sr-murthy/continuedfractions/blob/main/.github/workflows/codeql-analysis.yml).
The main CI workflow is [CI YML](https://github.com/sr-murthy/continuedfractions/blob/main/.github/workflows/ci.yml), and there is also a static [CodeQL Analysis YML](https://github.com/sr-murthy/continuedfractions/blob/main/.github/workflows/codeql-analysis.yml).

## Versioning and Releases `upload`

The latest release is `1.10.0`, and releases are created, tagged and published manually, not via a workflow.
The latest release is `1.11.1`, and releases are created, tagged and published manually, not via a workflow.
1,099 changes: 566 additions & 533 deletions docs/requirements.txt

Large diffs are not rendered by default.

1,353 changes: 706 additions & 647 deletions pdm.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@ keywords = [

classifiers = [
"Environment :: Console",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
Expand Down
2 changes: 1 addition & 1 deletion src/continuedfractions/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.11.0"
__version__ = "1.11.1"
Loading