Skip to content

Commit d0bd63e

Browse files
committed
1 parent 6cd3cd3 commit d0bd63e

8 files changed

Lines changed: 21 additions & 16 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ Contributing to python-phonenumbers
33

44
Contributions are welcome, but please be aware that the project is directly
55
derived from the
6-
[upstream Java project](https://github.com/googlei18n/libphonenumber).
6+
[upstream Java project](https://github.com/google/libphonenumber).
77

88
As a result, any changes to the phonenumber metadata or to the API should be
9-
[submitted there](https://github.com/googlei18n/libphonenumber/pulls)
9+
[submitted there](https://github.com/google/libphonenumber/pulls)
1010
rather than here; only issues or contributions that are specific to the Python
1111
version are likely to be relevant here.

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1-
Please do not report issues that can be reproduced with the [upstream Java project](https://github.com/googlei18n/libphonenumber): if your issue can be reproduced with the [online Java demo](http://libphonenumber.appspot.com/), report your [problem upstream](https://github.com/googlei18n/libphonenumber/blob/master/CONTRIBUTING.md#checklist-before-filing-an-issue) instead.
1+
Please do not report issues that can be reproduced with the [upstream Java
2+
project](https://github.com/google/libphonenumber): if your issue can be reproduced with the [online Java
3+
demo](http://libphonenumber.appspot.com/), report your [problem
4+
upstream](https://github.com/google/libphonenumber/blob/master/CONTRIBUTING.md#checklist-before-filing-an-issue)
5+
instead.
26

3-
In particular, any changes to the phonenumber metadata or to the API should be reported upstream rather than here. Only issues or contributions that are **specific to the Python version** are relevant here.
7+
In particular, any changes to the phonenumber metadata or to the API should be reported upstream rather than here. Only
8+
issues or contributions that are **specific to the Python version** are relevant here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Please report changes to metadata to the upstream [libphonenumber](https://github.com/googlei18n/libphonenumber/)
1+
Please report changes to metadata to the upstream [libphonenumber](https://github.com/google/libphonenumber/)
22
project rather than here.
33

44
Do not send pull requests with changes in files under any of the following directories:
@@ -11,6 +11,6 @@ Do not send pull requests with changes in files under any of the following direc
1111
- `python/phonenumbers/tzdata/`
1212

1313
All of these directories hold code that is autogenerated from the metadata in the `resources/` directory, which is an
14-
exact copy of the [equivalent directory](https://github.com/googlei18n/libphonenumber/tree/master/resources) in the
14+
exact copy of the [equivalent directory](https://github.com/google/libphonenumber/tree/master/resources) in the
1515
upstream project.
1616

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ phonenumbers Python Library
33

44
[![Coverage Status](https://coveralls.io/repos/daviddrysdale/python-phonenumbers/badge.svg?branch=dev&service=github)](https://coveralls.io/github/daviddrysdale/python-phonenumbers?branch=dev)
55

6-
This is a Python port of [Google's libphonenumber library](https://github.com/googlei18n/libphonenumber)
6+
This is a Python port of [Google's libphonenumber library](https://github.com/google/libphonenumber)
77
It supports Python 2.5-2.7 and Python 3.x (in the same codebase, with no
88
[2to3](http://docs.python.org/2/library/2to3.html) conversion needed).
99

1010
Original Java code is Copyright (C) 2009-2015 The Libphonenumber Authors.
1111

12-
Release [HISTORY](python/HISTORY.md), derived from [upstream release notes](https://github.com/googlei18n/libphonenumber/blob/master/release_notes.txt).
12+
Release [HISTORY](python/HISTORY.md), derived from [upstream release notes](https://github.com/google/libphonenumber/blob/master/release_notes.txt).
1313

1414

1515
Installation
@@ -176,7 +176,7 @@ belongs to.
176176
```
177177

178178
For more information about the other functionality available from the library, look in the unit tests or in the original
179-
[libphonenumber project](https://github.com/googlei18n/libphonenumber).
179+
[libphonenumber project](https://github.com/google/libphonenumber).
180180

181181
Memory Usage
182182
------------
@@ -211,7 +211,7 @@ Project Layout
211211
* The `python/` directory holds the Python code.
212212
* The `resources/` directory is a copy of the `resources/`
213213
directory from
214-
[libphonenumber](https://github.com/googlei18n/libphonenumber/tree/master/resources).
214+
[libphonenumber](https://github.com/google/libphonenumber/tree/master/resources).
215215
This is not needed to run the Python code, but is needed when upstream
216216
changes to the master metadata need to be incorporated.
217217
* The `tools/` directory holds the tools that are used to process upstream

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ Architecture: all
1010
Depends: ${python:Depends}, ${misc:Depends}
1111
Description: Python port of Google libphonenumber
1212
This is a Python port of Google's libphonenumber library, from
13-
https://github.com/googlei18n/libphonenumber.
13+
https://github.com/google/libphonenumber.
1414
It supports Python 2.5-2.7 and Python 3.x (in the same codebase, with
1515
no 2to3 conversion needed).

python/HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ library.
77
This file does not generally include descriptions of patch releases (vX.Y.Z
88
=> vX.Y.Z+1) unless there are significant changes to code, not just metadata
99
changes. (Metadata updates are best checked
10-
[upstream](https://github.com/googlei18n/libphonenumber/blob/master/release_notes.txt).)
10+
[upstream](https://github.com/google/libphonenumber/blob/master/release_notes.txt).)
1111

1212

1313
What's new in 8.10.8

python/tests/asyoutypetest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def testInvalidPlusSign(self):
6969
self.assertEqual("+48881231+2", formatter.input_digit('2'))
7070

7171
def testTooLongNumberMatchingMultipleLeadingDigits(self):
72-
# See https://github.com/googlei18n/libphonenumber/issues/36
72+
# See https://github.com/google/libphonenumber/issues/36
7373
# The bug occurred last time for countries which have two
7474
# formatting rules with exactly the same leading digits pattern
7575
# but differ in length.
@@ -1151,7 +1151,7 @@ def testAYTFNumberPatternsBecomingInvalidShouldNotResultInDigitLoss(self):
11511151
# we should ensure we use the last leading digit pattern, rather than
11521152
# the first one such that it *thinks* it's found a valid formatting
11531153
# rule again.
1154-
# https://github.com/googlei18n/libphonenumber/issues/437
1154+
# https://github.com/google/libphonenumber/issues/437
11551155
self.assertEqual("+8698812", formatter.input_digit('2'))
11561156
self.assertEqual("+86988123", formatter.input_digit('3'))
11571157
self.assertEqual("+869881234", formatter.input_digit('4'))

tools/python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
phonenumbers Python Library
22
===========================
33

4-
This is a Python port of [libphonenumber](https://github.com/googlei18n/libphonenumber).
4+
This is a Python port of [libphonenumber](https://github.com/google/libphonenumber).
55

66
Original Java code is Copyright (C) 2009-2016 The Libphonenumber Authors
77

@@ -117,7 +117,7 @@ Release Procedure
117117

118118
- Ensure that `python/HISTORY.md` file is up-to-date, and includes
119119
descriptions of changes in this version (adapted from the
120-
upstream [release notes](https://github.com/googlei18n/libphonenumber/blob/master/java/release_notes.txt),
120+
upstream [release notes](https://github.com/google/libphonenumber/blob/master/java/release_notes.txt),
121121
skipping the metadata changes chunks).
122122
- Set the `__version__` field in `python/phonenumbers/__init__.py`
123123
- Check that the list of symbols in `python/phonenumbers/__init__.py` `__all__` is

0 commit comments

Comments
 (0)