Skip to content

Commit

Permalink
v4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PSTPX1 authored and PSTPX1 committed Nov 29, 2024
1 parent 331af71 commit c5340c3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include requirements.txt
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# geodezyx (aka ___The GeodeZYX Toolbox___)

**Version 4.5.0 / 2024-11-28**, README Revision: 2024-11-28
**Version 4.5.1 / 2024-11-28**, README Revision: 2024-11-28


**Authors:** Pierre Sakic (IPGP, Paris, France) & Gustavo Mansur (GFZ, Potsdam, Germany)
Expand Down Expand Up @@ -75,14 +75,15 @@ Alternatively, you can also add the ``geodezyx`` folder in your ``PYTHONPATH`` (

## Changelog

### v4.5.0, 2024-11-28
### v4.5.1, 2024-11-28
* Make `geodezyx` compatible with Python 3.12
* Improvement of PRIDE-related execution functions
* New leap second functions, to cope with new Ubuntu 24.04 LTS
* `seawater` and `gsw` modules are installed in `full` mode & imported on demand only
* Correct angle conversion functions
* new version of `conv.numpydt2dt` function
* New version of `conv.numpydt2dt` function
* Misc routine improvements
* v4.5.0 is cancelled, because `requirements.txt` is missing

### v4.4.3, 2024-05-20
* Speed execution optimization for orbit/clock-related functions
Expand Down
2 changes: 1 addition & 1 deletion geodezyx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import os
from os import path

__version__='4.5.0' ## CHANGE IT ALSO IN setup and readme !!!!
__version__='4.5.1' ## CHANGE IT ALSO IN setup and readme !!!!

#### IMPORT CONFIG FOR LOGGER
log_file_path = os.path.join(path.dirname(path.abspath(__file__)),'logconfig','loggzyx.py')
Expand Down
2 changes: 1 addition & 1 deletion misc/memo_pypi_pip_package.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
python3 setup.py sdist bdist_wheel

### Check
twine check dist/*
python3 -m twine check dist/*

### Upload
python3 -m twine upload --verbose dist/<package_new_version>
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,15 @@
# https://packaging.python.org/specifications/core-metadata/#name
name='geodezyx', # Required

include_package_data=True, # for the MANIFEST and then the requirement.txt file

# Versions should comply with PEP 440:
# https://www.python.org/dev/peps/pep-0440/
#
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='4.5.0', ## change it in __init__.py and README.md !!!!
version='4.5.1', ## change it in __init__.py and README.md !!!!

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down

0 comments on commit c5340c3

Please sign in to comment.