Skip to content

Commit 5be4b49

Browse files
Release 0.2.1 and lower minimum Python to 3.13
1 parent f58e97d commit 5be4b49

8 files changed

Lines changed: 108 additions & 11 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ site/
1818
.coverage.*
1919
htmlcov/
2020
.pytest_cache/
21+
.DS_Store

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.14
1+
3.13

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Or for local development of this repo:
2525
uv sync
2626
```
2727

28-
Requires Python 3.14+.
28+
Requires Python 3.13+.
2929

3030
## Authentication
3131

@@ -322,7 +322,7 @@ To cut a release: bump `version` in `pyproject.toml`, then create a matching Git
322322
Release (e.g. tag `v0.1.1`) — the workflow builds and uploads it to PyPI.
323323

324324
> [!NOTE]
325-
> `requires-python` is `>=3.14`, so installs require Python 3.14+.
325+
> `requires-python` is `>=3.13`, so installs require Python 3.13+.
326326
327327
### Documentation
328328

docs/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Or, working inside a clone of the repository:
1414
uv sync
1515
```
1616

17-
The package requires **Python 3.14+** and depends on
17+
The package requires **Python 3.13+** and depends on
1818
[`httpx`](https://www.python-httpx.org/) and
1919
[`pydantic`](https://docs.pydantic.dev/).
2020

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ uv add linear-python-client
3131
pip install linear-python-client
3232
```
3333

34-
Requires Python 3.14+. See [Getting started](getting-started.md) for more detail.
34+
Requires Python 3.13+. See [Getting started](getting-started.md) for more detail.
3535

3636
## A 30-second tour
3737

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[project]
22
name = "linear-python-client"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Pragmatic Python client for the Linear GraphQL API"
55
readme = "README.md"
66
license = "MIT"
77
license-files = ["LICENSE"]
88
authors = [
99
{ name = "eli-the-wizard", email = "ewinter@hackerone.com" }
1010
]
11-
requires-python = ">=3.14"
11+
requires-python = ">=3.13"
1212
keywords = ["linear", "linear.app", "graphql", "api", "client", "sdk"]
1313
classifiers = [
1414
"Development Status :: 4 - Beta",
1515
"Intended Audience :: Developers",
1616
"Operating System :: OS Independent",
1717
"Programming Language :: Python :: 3",
18-
"Programming Language :: Python :: 3.14",
18+
"Programming Language :: Python :: 3.13",
1919
"Topic :: Software Development :: Libraries :: Python Modules",
2020
"Typing :: Typed",
2121
]

src/linear_python_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
WorkflowStatesResponse,
7979
)
8080

81-
__version__ = "0.2.0"
81+
__version__ = "0.2.1"
8282

8383
__all__ = [
8484
"DEFAULT_ENDPOINT",

uv.lock

Lines changed: 98 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)