Skip to content

Commit

Permalink
bugfix: azure many linux version
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Winkel committed Apr 17, 2024
1 parent 70a3321 commit b64f693
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGES.rst
@@ -1,4 +1,4 @@
0.3.6 (unreleased)
0.3.6 (2024-04-17)
=======================

New Features
Expand All @@ -8,6 +8,11 @@ New Features
`propagate_many` function. It is noted that the origin of this ECI-aligned
frame is still at the satellite center (See function description.)

Trivia
~~~~~~

- Migrated to a new package structure (`pyproject.toml`-based). [#29]

0.3.5 (2022-11-19)
=======================
This is a pure maintenance release. No features have been added.
Expand Down
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Expand Up @@ -28,8 +28,8 @@ jobs:

variables:
arch: x86_64
plat: manylinux2010_x86_64
image: quay.io/pypa/manylinux2010_x86_64
plat: manylinux_2_28_x86_64
image: quay.io/pypa/manylinux_2_28_x86_64
# for very old systems, the following would also be an alternative:
# plat: manylinux1_x86_64
# image: skhep/manylinuxgcc-x86_64
Expand Down Expand Up @@ -350,20 +350,20 @@ jobs:
- script: |
pip install twine
ls dist/*.whl
python -m twine upload -r "pypi_cysgp4" --config-file $(PYPIRC_PATH) dist/*.whl
python -m twine upload -r "pypi_cysgp4" --skip-existing --config-file $(PYPIRC_PATH) dist/*.whl
displayName: Upload wheels, Linux/MacOS
condition: and(succeeded(), eq(variables['publish.wheels'], true), not(startsWith(variables['Agent.OS'], 'Windows')))
- script: |
pip install twine
ls dist/*.whl
python -m twine upload -r "pypi_cysgp4" --config-file %PYPIRC_PATH% dist/*.whl
python -m twine upload -r "pypi_cysgp4" --skip-existing --config-file %PYPIRC_PATH% dist/*.whl
displayName: Upload wheels, Windows
condition: and(succeeded(), eq(variables['publish.wheels'], true), startsWith(variables['Agent.OS'], 'Windows'))
- script: |
$(conda.activate) cysgp4-env
python -m twine upload -r "pypi_cysgp4" --config-file $(PYPIRC_PATH) dist/*.tar.gz
python -m twine upload -r "pypi_cysgp4" --skip-existing --config-file $(PYPIRC_PATH) dist/*.tar.gz
displayName: Upload tarball
condition: and(succeeded(), eq(variables['publish.tarball'], true))
Expand Down

0 comments on commit b64f693

Please sign in to comment.