linear-python-client 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/PKG-INFO +7 -8
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/README.md +2 -2
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/pyproject.toml +5 -6
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/__init__.py +1 -1
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/LICENSE +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/client.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/errors.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/graphql/__init__.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/graphql/queries.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/models/__init__.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/models/entities.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/models/requests.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/models/responses.py +0 -0
- {linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: linear-python-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Pragmatic Python client for the Linear GraphQL API
|
|
5
5
|
Keywords: linear,linear.app,graphql,api,client,sdk
|
|
6
6
|
Author: eli-the-wizard
|
|
@@ -15,13 +15,12 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
15
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
16
|
Classifier: Typing :: Typed
|
|
17
17
|
Requires-Dist: httpx>=0.27
|
|
18
|
-
Requires-Dist: jupyter>=1.1.1
|
|
19
18
|
Requires-Dist: pydantic>=2.7
|
|
20
19
|
Requires-Python: >=3.14
|
|
21
|
-
Project-URL: Homepage, https://github.com/Hacker0x01/linear-python
|
|
22
|
-
Project-URL: Documentation, https://hacker0x01.github.io/linear-python/
|
|
23
|
-
Project-URL: Repository, https://github.com/Hacker0x01/linear-python
|
|
24
|
-
Project-URL: Issues, https://github.com/Hacker0x01/linear-python/issues
|
|
20
|
+
Project-URL: Homepage, https://github.com/Hacker0x01/linear-python-client
|
|
21
|
+
Project-URL: Documentation, https://hacker0x01.github.io/linear-python-client/
|
|
22
|
+
Project-URL: Repository, https://github.com/Hacker0x01/linear-python-client
|
|
23
|
+
Project-URL: Issues, https://github.com/Hacker0x01/linear-python-client/issues
|
|
25
24
|
Description-Content-Type: text/markdown
|
|
26
25
|
|
|
27
26
|
# linear-python-client
|
|
@@ -35,7 +34,7 @@ covers anything the typed methods don't.
|
|
|
35
34
|
|
|
36
35
|
Built against the [Linear developer docs](https://linear.app/developers).
|
|
37
36
|
|
|
38
|
-
📖 **Full documentation:** <https://hacker0x01.github.io/linear-python/>
|
|
37
|
+
📖 **Full documentation:** <https://hacker0x01.github.io/linear-python-client/>
|
|
39
38
|
|
|
40
39
|
## Installation
|
|
41
40
|
|
|
@@ -314,7 +313,7 @@ Publishing uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishe
|
|
|
314
313
|
(Settings → Environments).
|
|
315
314
|
|
|
316
315
|
To cut a release: bump `version` in `pyproject.toml`, then create a matching GitHub
|
|
317
|
-
Release (e.g. tag `v0.1.
|
|
316
|
+
Release (e.g. tag `v0.1.1`) — the workflow builds and uploads it to PyPI.
|
|
318
317
|
|
|
319
318
|
> [!NOTE]
|
|
320
319
|
> `requires-python` is `>=3.14`, so installs require Python 3.14+.
|
|
@@ -9,7 +9,7 @@ covers anything the typed methods don't.
|
|
|
9
9
|
|
|
10
10
|
Built against the [Linear developer docs](https://linear.app/developers).
|
|
11
11
|
|
|
12
|
-
📖 **Full documentation:** <https://hacker0x01.github.io/linear-python/>
|
|
12
|
+
📖 **Full documentation:** <https://hacker0x01.github.io/linear-python-client/>
|
|
13
13
|
|
|
14
14
|
## Installation
|
|
15
15
|
|
|
@@ -288,7 +288,7 @@ Publishing uses [PyPI Trusted Publishing](https://docs.pypi.org/trusted-publishe
|
|
|
288
288
|
(Settings → Environments).
|
|
289
289
|
|
|
290
290
|
To cut a release: bump `version` in `pyproject.toml`, then create a matching GitHub
|
|
291
|
-
Release (e.g. tag `v0.1.
|
|
291
|
+
Release (e.g. tag `v0.1.1`) — the workflow builds and uploads it to PyPI.
|
|
292
292
|
|
|
293
293
|
> [!NOTE]
|
|
294
294
|
> `requires-python` is `>=3.14`, so installs require Python 3.14+.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "linear-python-client"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "Pragmatic Python client for the Linear GraphQL API"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -21,15 +21,14 @@ classifiers = [
|
|
|
21
21
|
]
|
|
22
22
|
dependencies = [
|
|
23
23
|
"httpx>=0.27",
|
|
24
|
-
"jupyter>=1.1.1",
|
|
25
24
|
"pydantic>=2.7",
|
|
26
25
|
]
|
|
27
26
|
|
|
28
27
|
[project.urls]
|
|
29
|
-
Homepage = "https://github.com/Hacker0x01/linear-python"
|
|
30
|
-
Documentation = "https://hacker0x01.github.io/linear-python/"
|
|
31
|
-
Repository = "https://github.com/Hacker0x01/linear-python"
|
|
32
|
-
Issues = "https://github.com/Hacker0x01/linear-python/issues"
|
|
28
|
+
Homepage = "https://github.com/Hacker0x01/linear-python-client"
|
|
29
|
+
Documentation = "https://hacker0x01.github.io/linear-python-client/"
|
|
30
|
+
Repository = "https://github.com/Hacker0x01/linear-python-client"
|
|
31
|
+
Issues = "https://github.com/Hacker0x01/linear-python-client/issues"
|
|
33
32
|
|
|
34
33
|
[build-system]
|
|
35
34
|
requires = ["uv_build>=0.11.19,<0.12.0"]
|
|
File without changes
|
{linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/client.py
RENAMED
|
File without changes
|
{linear_python_client-0.1.0 → linear_python_client-0.1.1}/src/linear_python_client/errors.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|