5 Commits
1.0.2 ... 1.0.3

Author SHA1 Message Date
fda5957a04 Bump version to 1.0.3 2020-12-28 14:50:15 +01:00
0b2f98fa4f Fix license at setup.py 2020-12-28 14:01:44 +01:00
e6756888e7 Ensure tests run for every push 2020-12-26 19:00:42 +01:00
3e03e532fd Add badges to README.md 2020-12-26 18:50:48 +01:00
ae7bf28702 Fix github workflow 2020-12-26 17:02:04 +01:00
4 changed files with 8 additions and 3 deletions

View File

@ -4,12 +4,13 @@ on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
tests:
runs-on: ${{ matrix.os }}
if: github.event_name == 'pull_request'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
@ -37,6 +38,7 @@ jobs:
build_publish:
runs-on: ubuntu-latest
needs: tests
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v2

View File

@ -4,6 +4,9 @@ The digaws lookup tool displays information for a given IP address (v4 o v6) or
In order to save bandwidth and time this tool requests the [AWS IP ranges](https://ip-ranges.amazonaws.com/ip-ranges.json) and keeps
a cached version until a new version is published.
![PyPI version](https://badge.fury.io/py/digaws.svg)
![CI](https://github.com/dcarrillo/digaws/workflows/CI/badge.svg)
## Requirements
Python >= 3.7

View File

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

View File

@ -17,7 +17,7 @@ setup(
url='http://github.com/dcarrillo/digaws',
author='Daniel Carrillo',
author_email='daniel.carrillo@gmail.com',
license='MIT',
license='Apache Software License',
packages=['digaws'],
zip_safe=False,
classifiers=[