3 Commits
1.0.5 ... 1.0.6

Author SHA1 Message Date
e5685511ba [chore] Bump actions version 2024-03-22 16:56:37 +01:00
d1d01b242c Drop support for python 3.7 2024-03-22 16:49:17 +01:00
e2f0f4f63c chore: Bump python version to 3.11 2023-06-24 11:57:53 +02:00
4 changed files with 10 additions and 10 deletions

View File

@ -14,12 +14,12 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10"] python-version: ["3.8", "3.9", "3.10", "3.11"]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v5
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
@ -41,12 +41,12 @@ jobs:
needs: tests needs: tests
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v4
- name: Set up Python 3.8 - name: Set up Python 3.11
uses: actions/setup-python@v2 uses: actions/setup-python@v5
with: with:
python-version: 3.8 python-version: 3.11
- name: Install tools - name: Install tools
run: | run: |

View File

@ -9,7 +9,7 @@ a cached version until a new version is published.
## Requirements ## Requirements
Python >= 3.7 Python >= 3.8
Tests are verified on Linux, macos and Windows. Tests are verified on Linux, macos and Windows.

View File

@ -1,2 +1,2 @@
__version__ = '1.0.5' __version__ = '1.0.6'
__description__ = 'Look up canonical information for AWS IP addresses and networks' __description__ = 'Look up canonical information for AWS IP addresses and networks'

View File

@ -25,7 +25,7 @@ setup(
'License :: OSI Approved :: Apache Software License', 'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
], ],
python_requires='>=3.7', python_requires='>=3.8',
entry_points={ entry_points={
'console_scripts': ['digaws=digaws.digaws:main'] 'console_scripts': ['digaws=digaws.digaws:main']
}, },