Skip to content
Open
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
11 changes: 9 additions & 2 deletions bin/test-pythons
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ cd ..

./bin/build

for version in 3.7 3.13
if [ ! -d ~/assay ]; then
echo "Downloading assay to ~/assay..."
curl -L https://github.com/brandon-rhodes/assay/archive/master.tar.gz | tar xz
mv assay-master ~/assay
fi

for version in 3.8 3.9 3.10 3.11 3.12 3.13 3.14
do
echo
echo $version
Expand All @@ -20,7 +26,8 @@ do
source $venv/bin/activate
pushd ci
uv pip install pytz pandas
uv pip install ../dist/skyfield-1.51-py3-none-any.whl
skyfield_wheel=$(ls -t ../dist/skyfield-*-py3-none-any.whl | head -1)
uv pip install "$skyfield_wheel"
uv pip install ~/assay
assay --batch skyfield.tests
popd
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Scientific/Engineering :: Astronomy',
],
packages=[
Expand Down