Skip to content

Commit ec22f0c

Browse files
committed
chore(deps): bump setuptools from 69.0.2 to 80.9.0 (#1210)
1 parent 700c0e6 commit ec22f0c

File tree

5 files changed

+125
-9
lines changed

5 files changed

+125
-9
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
name: 🐛 Bug Report
3+
about: Unexpected or broken behavior of SDK-python 🤔
4+
labels: bug
5+
---
6+
7+
<!--- Please keep this note for the community --->
8+
9+
### Community Note
10+
11+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
12+
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
13+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
14+
15+
<!--- Thank you for keeping this note for the community --->
16+
17+
## Command attempted
18+
19+
<!-- Please provide the minimal Python code that reproduces the issue. -->
20+
21+
```python
22+
from scaleway_core.client import Client
23+
from scaleway.instance.v1.types import BootType
24+
from scaleway.instance.v1.custom_api import InstanceUtilsV1API
25+
26+
client = Client.from_config_file_and_env()
27+
instance_api = InstanceUtilsV1API(client)
28+
29+
server = instance_api.create_server(
30+
commercial_type="DEV1-S",
31+
zone="fr-par-1",
32+
name="test-server",
33+
dynamic_ip_required=False,
34+
volumes={},
35+
protected=False,
36+
boot_type=BootType.LOCAL,
37+
)
38+
```
39+
### Expected Behavior
40+
41+
<!--- What should have happened? --->
42+
43+
### Actual Behavior
44+
45+
<!--- What actually happened? --->
46+
47+
## More info
48+
49+
SDK-Python version: <!-- e.g. 1.32.0 -->
50+
51+
Python version: <!-- e.g. 3.10.0 -->
52+
53+
OS version: <!-- e.g. Ubuntu 22.04 -->
54+
55+
<!--- Add any other context, logs, screenshots, or system outputs about the problem --->
56+

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Scaleway Community
4+
url: https://slack.scaleway.com
5+
about: GitHub issues in this repository are only intended for bug reports and feature requests. Other issues will be closed. Please ask questions on the Scaleway Community Slack (#sdk-python)
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: 🚀 Feature request
3+
about: I have a suggestion (and might want to implement it myself 🙂)!
4+
labels: enhancement
5+
---
6+
7+
<!--- Please keep this note for the community --->
8+
9+
### Community Note
10+
11+
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original issue to help the community and maintainers prioritize this request
12+
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
13+
* If you are interested in working on this issue or have submitted a pull request, please leave a comment
14+
15+
<!--- Thank you for keeping this note for the community --->
16+
17+
## Description
18+
19+
<!-- Describe the problem, limitation, or missing feature that you think SDK-Python should address. -->
20+
21+
## Proposed Solution
22+
23+
<!-- How do you imagine SDK-Python could expose this functionality? -->
24+
25+
```python
26+
# Example of a possible API usage
27+
from scaleway.instance.v1.custom_api import InstanceUtilsV1API
28+
from scaleway_core.client import Client
29+
30+
client = Client.from_config_file_and_env()
31+
instance_api = InstanceUtilsV1API(client)
32+
server = instance_api.new_feature(...)
33+
```

.github/pull_request_template.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
### Community Note
2+
3+
* Please vote on this pull request by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original pull request comment to help the community and maintainers prioritize this request.
4+
* Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request
5+
6+
<!--- Thank you for keeping this note for the community --->
7+
8+
<!--- If your PR fully resolves and should automatically close the linked issue, use Closes. Otherwise, use Relates --->
9+
Relates OR Closes #0000
10+
11+
Release note for [CHANGELOG](https://github.com/scaleway/scaleway-cli/blob/master/CHANGELOG.md):
12+
<!--
13+
If the change is not user facing, just write "NONE" in the release-note block below.
14+
-->
15+
16+
```release-note
17+
18+
```

docs/poetry.lock

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

0 commit comments

Comments
 (0)