linear-python-client 0.2.0__tar.gz → 0.2.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.2.0 → linear_python_client-0.2.1}/PKG-INFO +5 -5
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/README.md +2 -2
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/pyproject.toml +3 -3
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/__init__.py +1 -1
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/LICENSE +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/client.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/errors.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/graphql/__init__.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/graphql/queries.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/models/__init__.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/models/entities.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/models/requests.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/models/responses.py +0 -0
- {linear_python_client-0.2.0 → linear_python_client-0.2.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.2.
|
|
3
|
+
Version: 0.2.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
|
|
@@ -11,12 +11,12 @@ Classifier: Development Status :: 4 - Beta
|
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Classifier: Programming Language :: Python :: 3
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
15
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
16
16
|
Classifier: Typing :: Typed
|
|
17
17
|
Requires-Dist: httpx>=0.27
|
|
18
18
|
Requires-Dist: pydantic>=2.7
|
|
19
|
-
Requires-Python: >=3.
|
|
19
|
+
Requires-Python: >=3.13
|
|
20
20
|
Project-URL: Homepage, https://github.com/Hacker0x01/linear-python-client
|
|
21
21
|
Project-URL: Documentation, https://hacker0x01.github.io/linear-python-client/
|
|
22
22
|
Project-URL: Repository, https://github.com/Hacker0x01/linear-python-client
|
|
@@ -50,7 +50,7 @@ Or for local development of this repo:
|
|
|
50
50
|
uv sync
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
Requires Python 3.
|
|
53
|
+
Requires Python 3.13+.
|
|
54
54
|
|
|
55
55
|
## Authentication
|
|
56
56
|
|
|
@@ -347,7 +347,7 @@ To cut a release: bump `version` in `pyproject.toml`, then create a matching Git
|
|
|
347
347
|
Release (e.g. tag `v0.1.1`) — the workflow builds and uploads it to PyPI.
|
|
348
348
|
|
|
349
349
|
> [!NOTE]
|
|
350
|
-
> `requires-python` is `>=3.
|
|
350
|
+
> `requires-python` is `>=3.13`, so installs require Python 3.13+.
|
|
351
351
|
|
|
352
352
|
### Documentation
|
|
353
353
|
|
|
@@ -25,7 +25,7 @@ Or for local development of this repo:
|
|
|
25
25
|
uv sync
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
Requires Python 3.
|
|
28
|
+
Requires Python 3.13+.
|
|
29
29
|
|
|
30
30
|
## Authentication
|
|
31
31
|
|
|
@@ -322,7 +322,7 @@ To cut a release: bump `version` in `pyproject.toml`, then create a matching Git
|
|
|
322
322
|
Release (e.g. tag `v0.1.1`) — the workflow builds and uploads it to PyPI.
|
|
323
323
|
|
|
324
324
|
> [!NOTE]
|
|
325
|
-
> `requires-python` is `>=3.
|
|
325
|
+
> `requires-python` is `>=3.13`, so installs require Python 3.13+.
|
|
326
326
|
|
|
327
327
|
### Documentation
|
|
328
328
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "linear-python-client"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.1"
|
|
4
4
|
description = "Pragmatic Python client for the Linear GraphQL API"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|
|
@@ -8,14 +8,14 @@ license-files = ["LICENSE"]
|
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "eli-the-wizard", email = "ewinter@hackerone.com" }
|
|
10
10
|
]
|
|
11
|
-
requires-python = ">=3.
|
|
11
|
+
requires-python = ">=3.13"
|
|
12
12
|
keywords = ["linear", "linear.app", "graphql", "api", "client", "sdk"]
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 4 - Beta",
|
|
15
15
|
"Intended Audience :: Developers",
|
|
16
16
|
"Operating System :: OS Independent",
|
|
17
17
|
"Programming Language :: Python :: 3",
|
|
18
|
-
"Programming Language :: Python :: 3.
|
|
18
|
+
"Programming Language :: Python :: 3.13",
|
|
19
19
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
20
20
|
"Typing :: Typed",
|
|
21
21
|
]
|
|
File without changes
|
{linear_python_client-0.2.0 → linear_python_client-0.2.1}/src/linear_python_client/client.py
RENAMED
|
File without changes
|
{linear_python_client-0.2.0 → linear_python_client-0.2.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
|