Skip to content

Commit

Permalink
Bump requests & whois-api
Browse files Browse the repository at this point in the history
  • Loading branch information
whoisxmlapi committed Jul 31, 2023
1 parent 8178a94 commit 3735450
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

1.1.0 (2023-07-31)
------------------

* Bump requests & whois-api
* Drop Python 3.6 support

1.0.0 (2022-01-15)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The client library for
`Bulk Whois API <https://whois.whoisxmlapi.com/bulk-api>`_
in Python language.

The minimum Python version is 3.6.
The minimum Python version is 3.7.

Installation
============
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
requests==2.31.0
whois-api==1.1.1
whois-api==1.1.4
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(*names, **kwargs):
setup(
name='bulk-whois-api',
version=version_content['VERSION'],
python_requires='>=3.6',
python_requires='>=3.7',
license='MIT',
description='Python client library for Bulk Whois API.',
long_description='%s\n%s' % (
Expand All @@ -51,10 +51,11 @@ def read(*names, **kwargs):
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Utilities',
],
keywords=[
Expand Down
2 changes: 1 addition & 1 deletion src/bulkwhoisapi/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = '1.0.0'
VERSION = '1.1.0'
LIBRARY_NAME = 'bulk-whois-python'

0 comments on commit 3735450

Please sign in to comment.