Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version to 4.1.5 #262

Merged
merged 2 commits into from
Oct 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 41 additions & 4 deletions .github/workflows/github-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,47 @@ on:

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
include:
- os: ubuntu-latest
arch: x86_64
build: "*-manylinux_*"
- os: ubuntu-latest
arch: x86_64
build: "*-musllinux_*"
- os: ubuntu-latest
arch: i686
build: "*-manylinux_*"
- os: ubuntu-latest
arch: i686
build: "*-musllinux_*"

- os: ubuntu-latest
arch: aarch64
build: "*-manylinux_*"
- os: ubuntu-latest
arch: aarch64
build: "*-musllinux_*"
- os: ubuntu-latest
arch: s390x
build: "*-manylinux_*"
- os: ubuntu-latest
arch: s390x
build: "*-musllinux_*"

- os: windows-latest
arch: AMD64
- os: windows-latest
arch: x86

- os: macos-latest
arch: x86_64
- os: macos-latest
arch: arm64

steps:
- uses: actions/checkout@v4
Expand All @@ -32,11 +68,12 @@ jobs:
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
#CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
CIBW_ARCHS_LINUX: auto aarch64 s390x
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_BUILD: ${{ matrix.build }}
CIBW_SKIP: pp*
CIBW_TEST_COMMAND: python -m unittest discover ephem
CIBW_TEST_REQUIRES: tzdata
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64"

- uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion ephem/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from math import acos, cos, isnan, pi, sin
from time import localtime as _localtime

__version__ = '4.1.4'
__version__ = '4.1.5'

# As a favor, compile a regular expression that our C library would
# really rather not compile for itself.
Expand Down
6 changes: 6 additions & 0 deletions ephem/doc/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
PyEphem CHANGELOG
=================

Version 4.1.5 (2023 October 8)
------------------------------

- Add support for Python 3.12.
`#259 <https://github.com/brandon-rhodes/pyephem/pull/259>`_

Version 4.1.4 (2022 December 21)
--------------------------------

Expand Down