release version 0.12.0

This commit is contained in:
Tobias Wellnitz, DH1TW 2025-06-10 01:34:16 +02:00
parent b51b32e575
commit 9c61f75c28
3 changed files with 18 additions and 4 deletions

View file

@ -34,8 +34,6 @@ This Library is used in production at the [DXHeat.com DX Cluster](https://dxheat
Pyhamtools is compatible with Python >=3.6.
We check compatibility on OSX, Windows, and Linux with the following Python versions:
* Python 3.6 (will be deprecated in 2025)
* Python 3.7 (will be deprecated in 2025)
* Python 3.8
* Python 3.9
* Python 3.10
@ -46,7 +44,11 @@ We check compatibility on OSX, Windows, and Linux with the following Python vers
* [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.
### depreciated: Python 2.7 & Python 3.5
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.
### depricated: Python 3.6 & Python 3.7
Support for Python 3.6 and Python 3.7 has been deprecated in June 2025. The last version which support Python 3.6 and Python 3.7 is 0.11.0.
## Documentation

View file

@ -1,6 +1,18 @@
Changelog
---------
PyHamtools 0.12.0
================
09. June 2025
* deprecated support for Python 3.6
* deprecated support for Python 3.7
* added support for higher Microwave bands (tnx @sq6emm)
* added support for 10 characters Maidenhead locators (tnx @sq6emm)
* updated CI pipeline
PyHamtools 0.11.0
================

View file

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