Skip to content

Commit 33d8e6c

Browse files
authored
Release v0.1.1 (#6)
Bugfix: Fix an issue with availability data having incorrect types.
1 parent f0c3290 commit 33d8e6c

File tree

3 files changed

+26
-6
lines changed

3 files changed

+26
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<div align="center">
44

5-
![PyPI version](https://img.shields.io/pypi/v/prime-cli)
6-
![Python versions](https://img.shields.io/pypi/pyversions/prime-cli)
7-
![License](https://img.shields.io/pypi/l/prime-cli)
5+
[![PyPI version](https://img.shields.io/pypi/v/prime-cli)](https://pypi.org/project/prime-cli/)
6+
[![Python versions](https://img.shields.io/pypi/pyversions/prime-cli)](https://pypi.org/project/prime-cli/)
7+
[![License](https://img.shields.io/pypi/l/prime-cli)](https://pypi.org/project/prime-cli/)
88

99
Command line interface for managing Prime Intellect GPU resources, enabling seamless deployment and management of compute pods.
1010
</div>

pyproject.toml

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "prime-cli"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Prime Intellect CLI"
55
readme = "README.md"
66
requires-python = ">=3.8"
@@ -14,6 +14,26 @@ dependencies = [
1414
"rich>=13.3.1",
1515
"pydantic>=2.0.0"
1616
]
17+
keywords = ["cli", "gpu", "cloud", "compute"]
18+
classifiers = [
19+
"Development Status :: 4 - Beta",
20+
"Environment :: Console",
21+
"Intended Audience :: Developers",
22+
"License :: OSI Approved :: MIT License",
23+
"Operating System :: OS Independent",
24+
"Programming Language :: Python :: 3",
25+
"Programming Language :: Python :: 3.8",
26+
"Programming Language :: Python :: 3.9",
27+
"Programming Language :: Python :: 3.10",
28+
"Programming Language :: Python :: 3.11",
29+
"Topic :: Software Development :: Libraries :: Python Modules"
30+
]
31+
32+
[project.urls]
33+
Homepage = "https://github.com/PrimeIntellect-ai/prime-cli"
34+
Documentation = "https://github.com/PrimeIntellect-ai/prime-cli#readme"
35+
Repository = "https://github.com/PrimeIntellect-ai/prime-cli.git"
36+
Changelog = "https://github.com/PrimeIntellect-ai/prime-cli/blob/main/CHANGELOG.md"
1737

1838
[project.scripts]
1939
prime = "prime_cli.main:run"

src/prime_cli/api/availability.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ class GPUAvailability(BaseModel):
6262
vcpu: ResourceConfig
6363
memory: ResourceConfig
6464
internet_speed: Optional[float] = Field(None, alias="internetSpeed")
65-
interconnect: Optional[str]
65+
interconnect: Optional[int]
6666
interconnect_type: Optional[str] = Field(None, alias="interconnectType")
67-
provisioning_time: Optional[str] = Field(None, alias="provisioningTime")
67+
provisioning_time: Optional[int] = Field(None, alias="provisioningTime")
6868
stock_status: str = Field(..., alias="stockStatus")
6969
security: Optional[str]
7070
prices: Prices

0 commit comments

Comments
 (0)