mirror of
https://github.com/dh1tw/pyhamtools.git
synced 2025-12-06 06:52:00 +01:00
release version 0.12.0
This commit is contained in:
parent
b51b32e575
commit
9c61f75c28
|
|
@ -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,8 +44,12 @@ We check compatibility on OSX, Windows, and Linux with the following Python vers
|
|||
* [pypy3.9](https://pypy.org/)
|
||||
* [pypy3.10](https://pypy.org/)
|
||||
|
||||
### 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
|
||||
|
||||
Check out the full documentation including the changelog at:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
================
|
||||
|
||||
|
|
|
|||
|
|
@ -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])))
|
||||
|
|
|
|||
Loading…
Reference in a new issue