Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lpellegr committed Oct 26, 2021
1 parent 0ce41e4 commit 224888f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Unit Tests
run: python -m unittest discover -s tests
run: python -m unittest discover -s tests
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.1.0] - 2021-10-26
### Changed
- Dependencies update

## [3.0.0] - 2021-04-09
### Changed
- Drop Python 2 support.
Expand All @@ -32,7 +36,8 @@ https://github.com/ipregistry/ipregistry-python#caching
## [1.0.0] - 2019-07-28
- First public release.

[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/3.0.0...HEAD
[Unreleased]: https://github.com/ipregistry/ipregistry-javascript/compare/3.1.0...HEAD
[3.1.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/3.0.0...3.1.0
[3.0.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/2.0.1...3.0.0
[2.0.1]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/2.0.0...2.0.1
[2.0.0]: https://github.com/ipregistry/ipregistry-javascript/releases/tag/1.1.0...2.0.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
[![PyPI](https://img.shields.io/pypi/v/ipregistry)](https://pypi.org/project/ipregistry/)

This is the official Python client library for the [Ipregistry](https://ipregistry.co) IP geolocation and threat data API,
allowing you to lookup your own IP address or specified ones. Responses return up to 65 data points including
location, currency, timezone, threat information, and more.
allowing you to lookup your own IP address or specified ones. Responses return multiple data points including carrier,
company, currency, location, timezone, threat information, and more.

Starting version 3.0.0 of the library, support for Python 2 has been dropped and the library requires Python 3.6+.

Expand Down
2 changes: 1 addition & 1 deletion ipregistry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ipregistry"

__version__ = "3.0.0"
__version__ = "3.1.0"

from .cache import *
from .core import *
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cachetools==4.2.1
certifi==2021.5.30
cachetools==4.2.4
certifi==2021.10.8
chardet==3.0.4
idna==2.10
idna==3.3
requests==2.26.0
six==1.15.0
urllib3==1.26.4
urllib3==1.26.7

0 comments on commit 224888f

Please sign in to comment.