Skip to content

Commit 25b4a93

Browse files
committed
Use https links
1 parent 6bc6db4 commit 25b4a93

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Documentation
3030
-------------
3131

3232
Complete API documentation is available on `Read the Docs
33-
<http://minfraud.readthedocs.io/>`_.
33+
<https://minfraud.readthedocs.io/>`_.
3434

3535
Usage
3636
-----
@@ -303,7 +303,7 @@ Python 3.6 or greater is required. Older versions are not supported.
303303
Versioning
304304
----------
305305

306-
The minFraud Python API uses `Semantic Versioning <http://semver.org/>`_.
306+
The minFraud Python API uses `Semantic Versioning <https://semver.org/>`_.
307307

308308
Support
309309
-------
@@ -312,7 +312,7 @@ Please report all issues with this code using the `GitHub issue tracker
312312
<https://github.com/maxmind/minfraud-api-python/issues>`_.
313313

314314
If you are having an issue with a MaxMind service that is not specific to the
315-
client API, please contact `MaxMind support <http://www.maxmind.com/en/support>`_
315+
client API, please contact `MaxMind support <https://www.maxmind.com/en/support>`_
316316
for assistance.
317317

318318
Copyright and License

docs/conf.py

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

245245
# Example configuration for intersphinx: refer to the Python standard library.
246246
intersphinx_mapping = {
247-
"python": ("http://python.readthedocs.org/en/latest/", None),
248-
"geoip2": ("http://geoip2.readthedocs.org/en/latest/", None),
247+
"python": ("https://python.readthedocs.org/en/latest/", None),
248+
"geoip2": ("https://geoip2.readthedocs.org/en/latest/", None),
249249
}
250250

251251
autoclass_content = "both"

minfraud/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class GeoIP2Location(geoip2.records.Location):
6969
7070
The date and time of the transaction in the time
7171
zone associated with the IP address. The value is formatted according to
72-
`RFC 3339 <http://tools.ietf.org/html/rfc3339>`_. For instance, the
72+
`RFC 3339 <https://tools.ietf.org/html/rfc3339>`_. For instance, the
7373
local time in Boston might be returned as 2015-04-27T19:17:24-04:00.
7474
7575
:type: str | None
@@ -463,7 +463,7 @@ class CreditCard:
463463
.. attribute:: country
464464
465465
This property contains the `ISO 3166-1 alpha-2 country code
466-
<http://en.wikipedia.org/wiki/ISO_3166-1_alpha-2>`_ associated with the
466+
<https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2>`_ associated with the
467467
location of the majority of customers using this credit card as
468468
determined by their billing address. In cases where the location of
469469
customers is highly mixed, this defaults to the country of the bank

minfraud/validation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def _email_or_md5(s: str) -> str:
6262

6363

6464
# based off of:
65-
# http://stackoverflow.com/questions/2532053/validate-a-hostname-string
65+
# https://stackoverflow.com/questions/2532053/validate-a-hostname-string
6666
def _hostname(hostname: str) -> str:
6767
if len(hostname) > 255:
6868
raise ValueError

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
long_description=_readme,
3939
author="Gregory Oschwald",
4040
author_email="goschwald@maxmind.com",
41-
url="http://www.maxmind.com/",
41+
url="https://www.maxmind.com/",
4242
packages=["minfraud"],
4343
package_data={"minfraud": ["py.typed"]},
4444
include_package_data=True,

0 commit comments

Comments
 (0)