[Git][debian-gis-team/pymap3d][upstream] New upstream version 2.3.1
Antonio Valentino
gitlab at salsa.debian.org
Thu Apr 23 18:56:05 BST 2020
Antonio Valentino pushed to branch upstream at Debian GIS Project / pymap3d
Commits:
0e46313f by Antonio Valentino at 2020-04-23T17:45:40+00:00
New upstream version 2.3.1
- - - - -
24 changed files:
- CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
- .github/workflows/ci.yml
- .github/workflows/ci_stdlib_only.yml
- README.md
- setup.cfg
- pymap3d/__init__.py → src/pymap3d/__init__.py
- pymap3d/aer.py → src/pymap3d/aer.py
- pymap3d/azelradec.py → src/pymap3d/azelradec.py
- pymap3d/ecef.py → src/pymap3d/ecef.py
- pymap3d/eci.py → src/pymap3d/eci.py
- pymap3d/ellipsoid.py → src/pymap3d/ellipsoid.py
- pymap3d/enu.py → src/pymap3d/enu.py
- pymap3d/haversine.py → src/pymap3d/haversine.py
- pymap3d/latitude.py → src/pymap3d/latitude.py
- pymap3d/los.py → src/pymap3d/los.py
- pymap3d/lox.py → src/pymap3d/lox.py
- pymap3d/ned.py → src/pymap3d/ned.py
- pymap3d/rcurve.py → src/pymap3d/rcurve.py
- pymap3d/rsphere.py → src/pymap3d/rsphere.py
- pymap3d/sidereal.py → src/pymap3d/sidereal.py
- pymap3d/timeconv.py → src/pymap3d/timeconv.py
- pymap3d/utils.py → src/pymap3d/utils.py
- pymap3d/vallado.py → src/pymap3d/vallado.py
- pymap3d/vincenty.py → src/pymap3d/vincenty.py
Changes:
=====================================
CODE_OF_CONDUCT.md → .github/CODE_OF_CONDUCT.md
=====================================
=====================================
.github/workflows/ci.yml
=====================================
@@ -5,20 +5,20 @@ on:
paths:
- "**.py"
pull_request:
- paths:
- - "**.py"
+ release:
jobs:
full:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v1
+ - uses: actions/checkout at v2
- uses: actions/setup-python at v1
with:
python-version: '3.x'
- run: pip install .[full,tests,lint]
+
- run: flake8
- run: mypy .
+
- run: pytest
- working-directory: tests
=====================================
.github/workflows/ci_stdlib_only.yml
=====================================
@@ -5,18 +5,18 @@ on:
paths:
- "**.py"
pull_request:
- paths:
- - "**.py"
+ release:
jobs:
stdlib_py35:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout at v1
+ - uses: actions/checkout at v2
- uses: actions/setup-python at v1
with:
python-version: 3.5
- run: pip install .[tests]
+
- run: pytest
working-directory: tests
=====================================
README.md
=====================================
@@ -4,9 +4,8 @@
[](https://doi.org/10.21105/joss.00580)
[](https://github.com/Ullaakut/astronomer/)
-[](https://github.com/scivision/pymap3d/actions)
-[](https://github.com/scivision/pymap3d/actions)
-
+
+
[](https://lgtm.com/projects/g/scivision/pymap3d/context:python)
[](https://pypi.python.org/pypi/pymap3d)
@@ -16,14 +15,14 @@ Pure Python (no prerequistes beyond Python itself) 3-D geographic coordinate con
API similar to popular $1000 Matlab Mapping Toolbox routines for:
* Python
-* [Matlab, GNU Octave](https://github.com/scivision/matmap3d)
-* [modern Fortran](https://github.com/scivision/maptran)
+* [Matlab, GNU Octave](https://github.com/geospace-code/matmap3d)
+* [modern Fortran](https://github.com/geospace-code/maptran)
PyMap3D is intended for non-interactive use on massively parallel (HPC) and embedded systems.
Includes some relevant
[Vallado algorithms](http://www.smad.com/vallado/fortran/fortran.html).
-[API docs](https://scivision.github.io/pymap3d/)
+[API docs](https://geospace-code.github.io/pymap3d/)
Thanks to our [contributors](./contributors.md).
@@ -41,7 +40,7 @@ python3 -m pip install pymap3d
or for the latest development code:
```sh
-git clone https://github.com/scivision/pymap3d
+git clone https://github.com/geospace-code/pymap3d
pip install -e pymap3d
```
=====================================
setup.cfg
=====================================
@@ -4,7 +4,7 @@ version = 2.3.0
author = Michael Hirsch, Ph.D.
author_email = scivision at users.noreply.github.com
description = pure Python (no prereqs) coordinate conversions, following convention of several popular Matlab routines.
-url = https://github.com/scivision/pymap3d
+url = https://github.com/geospace-code/pymap3d
keywords =
coordinate conversion
classifiers =
@@ -31,7 +31,11 @@ python_requires = >= 3.5.2
packages = find:
zip_safe = False
install_requires =
+package_dir=
+ =src
+[options.packages.find]
+where=src
[options.extras_require]
tests =
=====================================
pymap3d/__init__.py → src/pymap3d/__init__.py
=====================================
@@ -27,8 +27,8 @@ Other languages
Companion packages exist for:
-* Matlab / GNU Octave: [Matmap3D](https://github.com/scivision/matmap3d)
-* Fortran: [Maptran3D](https://github.com/scivision/maptran3d)
+* Matlab / GNU Octave: [Matmap3D](https://github.com/geospace-code/matmap3d)
+* Fortran: [Maptran3D](https://github.com/geospace-code/maptran3d)
"""
from .aer import ecef2aer, aer2ecef, geodetic2aer, aer2geodetic, eci2aer, aer2eci
=====================================
pymap3d/aer.py → src/pymap3d/aer.py
=====================================
=====================================
pymap3d/azelradec.py → src/pymap3d/azelradec.py
=====================================
=====================================
pymap3d/ecef.py → src/pymap3d/ecef.py
=====================================
=====================================
pymap3d/eci.py → src/pymap3d/eci.py
=====================================
=====================================
pymap3d/ellipsoid.py → src/pymap3d/ellipsoid.py
=====================================
=====================================
pymap3d/enu.py → src/pymap3d/enu.py
=====================================
=====================================
pymap3d/haversine.py → src/pymap3d/haversine.py
=====================================
=====================================
pymap3d/latitude.py → src/pymap3d/latitude.py
=====================================
=====================================
pymap3d/los.py → src/pymap3d/los.py
=====================================
=====================================
pymap3d/lox.py → src/pymap3d/lox.py
=====================================
=====================================
pymap3d/ned.py → src/pymap3d/ned.py
=====================================
=====================================
pymap3d/rcurve.py → src/pymap3d/rcurve.py
=====================================
=====================================
pymap3d/rsphere.py → src/pymap3d/rsphere.py
=====================================
=====================================
pymap3d/sidereal.py → src/pymap3d/sidereal.py
=====================================
=====================================
pymap3d/timeconv.py → src/pymap3d/timeconv.py
=====================================
=====================================
pymap3d/utils.py → src/pymap3d/utils.py
=====================================
=====================================
pymap3d/vallado.py → src/pymap3d/vallado.py
=====================================
=====================================
pymap3d/vincenty.py → src/pymap3d/vincenty.py
=====================================
View it on GitLab: https://salsa.debian.org/debian-gis-team/pymap3d/-/commit/0e46313fe17a332a4d9f0d09505206fb6cf7487c
--
View it on GitLab: https://salsa.debian.org/debian-gis-team/pymap3d/-/commit/0e46313fe17a332a4d9f0d09505206fb6cf7487c
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-grass-devel/attachments/20200423/db2b2c3c/attachment-0001.html>
More information about the Pkg-grass-devel
mailing list