Skip to content

Commit 18aad07

Browse files
authored
migrate repo org (#297)
1 parent bfe63cc commit 18aad07

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
Python client API library made especially for [MAAS][].
44

5-
[![CI tests](https://github.com/maas/python-libmaas/workflows/CI%20tests/badge.svg)](https://github.com/maas/python-libmaas/actions?query=workflow%3A%22CI+tests%22)
6-
[![codecov.io](https://codecov.io/github/maas/python-libmaas/coverage.svg?branch=master)](https://codecov.io/github/maas/python-libmaas?branch=master)
5+
[![CI tests](https://github.com/canonical/python-libmaas/workflows/CI%20tests/badge.svg)](https://github.com/canonical/python-libmaas/actions?query=workflow%3A%22CI+tests%22)
6+
[![codecov.io](https://codecov.io/github/canonical/python-libmaas/coverage.svg?branch=master)](https://codecov.io/github/maas/python-libmaas?branch=master)
77

88

99
## Installation
@@ -14,7 +14,7 @@ with [pip](https://pip.pypa.io/). Python 3.5+ is required.
1414
When working from master it can be helpful to use a virtualenv:
1515

1616
$ python3 -m venv ve && source ve/bin/activate
17-
$ pip install git+https://github.com/maas/python-libmaas.git
17+
$ pip install git+https://github.com/canonical/python-libmaas.git
1818
$ maas --help
1919

2020
Releases are periodically made to [PyPI](https://pypi.python.org/) but,

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Priority: optional
44
Maintainer: Andres Rodriguez <andreserl@ubuntu.com>
55
Build-Depends: debhelper (>= 10), dh-python, python3-all, python3-setuptools
66
Standards-Version: 4.1.3
7-
Homepage: https://github.com/maas/python-libmaas
7+
Homepage: https://github.com/canonical/python-libmaas
88
X-Python3-Version: >= 3.2
99

1010
Package: python3-libmaas

debian/copyright

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
22
Upstream-Name: python-libmaas
3-
Source: https://github.com/maas/python-libmaas
3+
Source: https://github.com/canonical/python-libmaas
44

55
Files: *
66
Copyright: 2017-2018 Canonical Ltd.

debian/watch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ version=4
66

77
# GitHub hosted projects
88
opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%python-libmaas-$1.tar.gz%" \
9-
https://github.com/maas/python-libmaas/tags \
9+
https://github.com/canonical/python-libmaas/tags \
1010
(?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate

doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ markdown_extensions:
33
- codehilite
44
- sane_lists
55
- smarty
6-
repo_url: https://github.com/maas/python-libmaas
6+
repo_url: https://github.com/canonical/python-libmaas
77
site_name: MAAS Client Library & CLI
88
strict: true
99
theme: readthedocs

doc/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ until we release a beta all APIs could change.
2727
Either work from a branch:
2828

2929
```console
30-
$ git clone https://github.com/maas/python-libmaas.git
30+
$ git clone https://github.com/canonical/python-libmaas.git
3131
$ cd python-libmaas
3232
$ make
3333
```
@@ -37,7 +37,7 @@ Or install with [pip](https://pip.pypa.io/) into a
3737

3838
```console
3939
$ virtualenv --python=python3 amc && source amc/bin/activate
40-
$ pip install git+https://github.com/maas/python-libmaas.git
40+
$ pip install git+https://github.com/canonical/python-libmaas.git
4141
```
4242

4343
Or install from [PyPI](https://pypi.python.org/):

maas/client/viscera/tests/test_machines.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def test__commission_with_wait_failed(self):
203203
)
204204

205205
def test__commission_with_no_tests(self):
206-
# Regression test for https://github.com/maas/python-libmaas/issues/185
206+
# Regression test for https://github.com/canonical/python-libmaas/issues/185
207207
system_id = make_name_without_spaces("system-id")
208208
hostname = make_name_without_spaces("hostname")
209209
data = {

maas/client/viscera/tests/test_vlans.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test__vlan_update_relay_vlan_with_object(self):
220220
self.assertThat(vlan.relay_vlan.id, Equals(relay_vlan.id))
221221

222222
def test__vlan_update_relay_vlan_with_integer_id(self):
223-
self.skip("see https://github.com/maas/python-libmaas/issues/180")
223+
self.skip("see https://github.com/canonical/python-libmaas/issues/180")
224224
origin = make_origin()
225225
Vlan = origin.Vlan
226226
Vlan._handler.params = ["fabric_id", "vid"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def read(filename):
2626
name='python-libmaas',
2727
author='MAAS Developers',
2828
author_email='maas-devel@lists.launchpad.net',
29-
url='https://github.com/maas/python-libmaas',
29+
url='https://github.com/canonical/python-libmaas',
3030
version="0.6.8",
3131
classifiers=[
3232
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)