Skip to content

Commit

Permalink
feat: rename python package (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
scraly authored Aug 29, 2023
1 parent 083b49c commit 047d295
Show file tree
Hide file tree
Showing 223 changed files with 122 additions and 122 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The OVH Resource Provider lets you manage [OVHcloud](https://www.ovhcloud.com/en
<a href="https://github.com/scraly/pulumi-ovh/releases/latest"><img alt="GitHub release" src="https://img.shields.io/github/v/release/scraly/pulumi-ovh?logo=github&style=flat-square"></a>
[![GoDoc](https://godoc.org/github.com/scraly/pulumi-ovh?status.svg)](https://godoc.org/github.com/scraly/pulumi-ovh)
[![NPM version](https://badge.fury.io/js/@scraly%2Fpulumi-ovh.svg)](https://badge.fury.io/js/@scraly%2Fpulumi-ovh)
[![PyPI version](https://badge.fury.io/py/scraly-pulumi-ovh.svg)](https://badge.fury.io/py/scraly-pulumi-ovh)
[![PyPI version](https://badge.fury.io/py/pulumi-ovh.svg)](https://badge.fury.io/py/pulumi-ovh)
[![NuGet version](https://badge.fury.io/nu/Pulumi.Ovh.svg)](https://badge.fury.io/nu/Pulumi.Ovh)
<a href="https://gitpod.io/#https://github.com/scraly/pulumi-ovh"><img src="https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod" alt="Contribute with Gitpod"/></a>

Expand All @@ -32,7 +32,7 @@ yarn add @scraly/pulumi-ovh
To use from Python, install using `pip`:

```bash
pip install scraly-pulumi-ovh
pip install pulumi-ovh
```

### Go
Expand Down
2 changes: 1 addition & 1 deletion docs/installation-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ layout: installation
The Pulumi `OVH` provider is available as a package in all Pulumi languages:

* JavaScript/TypeScript: [`@scraly/pulumi-ovh`](https://www.npmjs.com/package/@scraly/pulumi-ovh)
* Python: [`scraly_pulumi_ovh`](https://pypi.org/project/scraly-pulumi-ovh/)
* Python: [`scraly_pulumi_ovh`](https://pypi.org/project/pulumi-ovh/)
* Go: [`github.com/scraly/pulumi-ovh/sdk/go/ovh`](https://pkg.go.dev/github.com/scraly/pulumi-ovh/sdk)
* .NET: [`Pulumi.Ovh`](https://www.nuget.org/packages/Pulumi.Ovh)

Expand Down
2 changes: 1 addition & 1 deletion examples/ovh-python/__main__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""A Python Pulumi program"""

import pulumi
import scraly_pulumi_ovh as ovh
import pulumi_ovh as ovh

config = pulumi.Config();
service_name = config.require('serviceName')
Expand Down
2 changes: 1 addition & 1 deletion examples/ovh-python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pulumi>=3.0.0,<4.0.0
scraly-pulumi-ovh
pulumi-ovh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Metadata-Version: 2.1
Name: scraly-pulumi-ovh
Name: pulumi-ovh
Version: 0.33.0
Summary: A Pulumi package for creating and managing OVH resources.
Home-page: https://www.pulumi.com
Expand All @@ -19,7 +19,7 @@ The OVH Resource Provider lets you manage [OVHcloud](https://www.ovhcloud.com/en
<a href="https://github.com/scraly/pulumi-ovh/releases/latest"><img alt="GitHub release" src="https://img.shields.io/github/v/release/scraly/pulumi-ovh?logo=github&style=flat-square"></a>
[![GoDoc](https://godoc.org/github.com/scraly/pulumi-ovh?status.svg)](https://godoc.org/github.com/scraly/pulumi-ovh)
[![NPM version](https://badge.fury.io/js/@scraly%2Fpulumi-ovh.svg)](https://badge.fury.io/js/@scraly%2Fpulumi-ovh)
[![PyPI version](https://badge.fury.io/py/scraly-pulumi-ovh.svg)](https://badge.fury.io/py/scraly-pulumi-ovh)
[![PyPI version](https://badge.fury.io/py/pulumi-ovh.svg)](https://badge.fury.io/py/pulumi-ovh)
[![NuGet version](https://badge.fury.io/nu/Pulumi.Ovh.svg)](https://badge.fury.io/nu/Pulumi.Ovh)
<a href="https://gitpod.io/#https://github.com/scraly/pulumi-ovh"><img src="https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod" alt="Contribute with Gitpod"/></a>

Expand All @@ -46,7 +46,7 @@ yarn add @scraly/pulumi-ovh
To use from Python, install using `pip`:

```bash
pip install scraly-pulumi-ovh
pip install pulumi-ovh
```

### Go
Expand Down
2 changes: 1 addition & 1 deletion provider/cmd/pulumi-resource-ovh/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"disableUnionOutputTypes": true
},
"python": {
"packageName": "scraly_pulumi_ovh",
"packageName": "pulumi_ovh",
"requires": {
"pulumi": "\u003e=3.0.0,\u003c4.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ func Provider() tfbridge.ProviderInfo {
//Overlay: &tfbridge.OverlayInfo{},
},
Python: &tfbridge.PythonInfo{
PackageName: "scraly_pulumi_ovh",
PackageName: "pulumi_ovh",
// List any Python dependencies and their version ranges
Requires: map[string]string{
"pulumi": ">=3.0.0,<4.0.0",
Expand Down
4 changes: 2 additions & 2 deletions sdk/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The OVH Resource Provider lets you manage [OVHcloud](https://www.ovhcloud.com/en
<a href="https://github.com/scraly/pulumi-ovh/releases/latest"><img alt="GitHub release" src="https://img.shields.io/github/v/release/scraly/pulumi-ovh?logo=github&style=flat-square"></a>
[![GoDoc](https://godoc.org/github.com/scraly/pulumi-ovh?status.svg)](https://godoc.org/github.com/scraly/pulumi-ovh)
[![NPM version](https://badge.fury.io/js/@scraly%2Fpulumi-ovh.svg)](https://badge.fury.io/js/@scraly%2Fpulumi-ovh)
[![PyPI version](https://badge.fury.io/py/scraly-pulumi-ovh.svg)](https://badge.fury.io/py/scraly-pulumi-ovh)
[![PyPI version](https://badge.fury.io/py/pulumi-ovh.svg)](https://badge.fury.io/py/pulumi-ovh)
[![NuGet version](https://badge.fury.io/nu/Pulumi.Ovh.svg)](https://badge.fury.io/nu/Pulumi.Ovh)
<a href="https://gitpod.io/#https://github.com/scraly/pulumi-ovh"><img src="https://img.shields.io/badge/Contribute%20with-Gitpod-908a85?logo=gitpod" alt="Contribute with Gitpod"/></a>

Expand All @@ -32,7 +32,7 @@ yarn add @scraly/pulumi-ovh
To use from Python, install using `pip`:

```bash
pip install scraly-pulumi-ovh
pip install pulumi-ovh
```

### Go
Expand Down
File renamed without changes.
Loading

0 comments on commit 047d295

Please sign in to comment.