Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

migrate repo org #297

Merged
merged 1 commit into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

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

[![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)
[![codecov.io](https://codecov.io/github/maas/python-libmaas/coverage.svg?branch=master)](https://codecov.io/github/maas/python-libmaas?branch=master)
[![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)
[![codecov.io](https://codecov.io/github/canonical/python-libmaas/coverage.svg?branch=master)](https://codecov.io/github/maas/python-libmaas?branch=master)


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

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

Releases are periodically made to [PyPI](https://pypi.python.org/) but,
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Priority: optional
Maintainer: Andres Rodriguez <andreserl@ubuntu.com>
Build-Depends: debhelper (>= 10), dh-python, python3-all, python3-setuptools
Standards-Version: 4.1.3
Homepage: https://github.com/maas/python-libmaas
Homepage: https://github.com/canonical/python-libmaas
X-Python3-Version: >= 3.2

Package: python3-libmaas
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: python-libmaas
Source: https://github.com/maas/python-libmaas
Source: https://github.com/canonical/python-libmaas

Files: *
Copyright: 2017-2018 Canonical Ltd.
Expand Down
2 changes: 1 addition & 1 deletion debian/watch
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ version=4

# GitHub hosted projects
opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%python-libmaas-$1.tar.gz%" \
https://github.com/maas/python-libmaas/tags \
https://github.com/canonical/python-libmaas/tags \
(?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate
2 changes: 1 addition & 1 deletion doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ markdown_extensions:
- codehilite
- sane_lists
- smarty
repo_url: https://github.com/maas/python-libmaas
repo_url: https://github.com/canonical/python-libmaas
site_name: MAAS Client Library & CLI
strict: true
theme: readthedocs
Expand Down
4 changes: 2 additions & 2 deletions doc/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ until we release a beta all APIs could change.
Either work from a branch:

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

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

Or install from [PyPI](https://pypi.python.org/):
Expand Down
2 changes: 1 addition & 1 deletion maas/client/viscera/tests/test_machines.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def test__commission_with_wait_failed(self):
)

def test__commission_with_no_tests(self):
# Regression test for https://github.com/maas/python-libmaas/issues/185
# Regression test for https://github.com/canonical/python-libmaas/issues/185
system_id = make_name_without_spaces("system-id")
hostname = make_name_without_spaces("hostname")
data = {
Expand Down
2 changes: 1 addition & 1 deletion maas/client/viscera/tests/test_vlans.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def test__vlan_update_relay_vlan_with_object(self):
self.assertThat(vlan.relay_vlan.id, Equals(relay_vlan.id))

def test__vlan_update_relay_vlan_with_integer_id(self):
self.skip("see https://github.com/maas/python-libmaas/issues/180")
self.skip("see https://github.com/canonical/python-libmaas/issues/180")
origin = make_origin()
Vlan = origin.Vlan
Vlan._handler.params = ["fabric_id", "vid"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(filename):
name='python-libmaas',
author='MAAS Developers',
author_email='maas-devel@lists.launchpad.net',
url='https://github.com/maas/python-libmaas',
url='https://github.com/canonical/python-libmaas',
version="0.6.8",
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down
Loading