updated docs

This commit is contained in:
Tobias Wellnitz, DH1TW 2023-12-28 20:51:33 +01:00
parent e6228a1b0b
commit 0313cb72e5
3 changed files with 23 additions and 11 deletions

View file

@ -4,7 +4,7 @@
[![codecov](https://codecov.io/gh/dh1tw/pyhamtools/branch/master/graph/badge.svg)](https://codecov.io/gh/dh1tw/pyhamtools) [![codecov](https://codecov.io/gh/dh1tw/pyhamtools/branch/master/graph/badge.svg)](https://codecov.io/gh/dh1tw/pyhamtools)
[![PyPI version](https://badge.fury.io/py/pyhamtools.svg)](https://badge.fury.io/py/pyhamtools) [![PyPI version](https://badge.fury.io/py/pyhamtools.svg)](https://badge.fury.io/py/pyhamtools)
Pyhamtools is a set of functions and classes for Amateur Radio purpose. Pyhamtools is a set of functions and classes for Amateur Radio purposes.
Currently, the core part is the Callsign Lookup which decodes any amateur radio Currently, the core part is the Callsign Lookup which decodes any amateur radio
callsign string and provides the corresponding information (Country, DXCC callsign string and provides the corresponding information (Country, DXCC
entity, CQ Zone...etc). This basic functionality is needed for Logbooks, entity, CQ Zone...etc). This basic functionality is needed for Logbooks,
@ -31,22 +31,22 @@ This Library is used in production at the [DXHeat.com DX Cluster](https://dxheat
## Compatibility ## Compatibility
Pyhamtools is compatible with Python 2.7 and Python >=3.6. Pyhamtools is compatible with Python >=3.6.
We check compatibility on OSX, Windows, and Linux with the following Python We check compatibility on OSX, Windows, and Linux with the following Python versions:
versions:
* Python 2.7 (will be deprecated in 2023) * Python 3.6 (will be deprecated in 2024)
* Python 3.5 (has been deprecated in 2022) * Python 3.7 (will be deprecated in 2024)
* Python 3.6 (will be deprecated in 2023)
* Python 3.7
* Python 3.8 * Python 3.8
* Python 3.9 * Python 3.9
* Python 3.10 * Python 3.10
* Python 3.11 * Python 3.11
* [pypy2](https://pypy.org/) (Python 2) * Python 3.12
* [pypy3.7](https://pypy.org/) * [pypy3.7](https://pypy.org/) (will be deprecated in 2024)
* [pypy3.8](https://pypy.org/) * [pypy3.8](https://pypy.org/)
* [pypy3.9](https://pypy.org/) * [pypy3.9](https://pypy.org/)
* [pypy3.10](https://pypy.org/)
The support for Python 2.7 and 3.5 has been deprecated at the end of 2023. The last version which supports Python 2.7 and Python 3.5 is 0.8.7.
## Documentation ## Documentation

View file

@ -1,6 +1,18 @@
Changelog Changelog
--------- ---------
PyHamtools 0.9.0
================
28. December 2023
* Deprecated support for Python 2.7 and Python 3.5
* Added Support for Python 3.12
* Replaced pytz with datetime.timezone
* Added Continous Integration Jobs for MacOS (now supported by Github Actions)
PyHamtools 0.8.7 PyHamtools 0.8.7
================ ================

View file

@ -1,3 +1,3 @@
VERSION = (0, 8, 7) VERSION = (0, 9, 0)
__release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:] __release__ = ''.join(['-.'[type(x) == int]+str(x) for x in VERSION])[1:]
__version__ = '.'.join((str(VERSION[0]), str(VERSION[1]))) __version__ = '.'.join((str(VERSION[0]), str(VERSION[1])))