File tree 3 files changed +43
-2
lines changed
3 files changed +43
-2
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,44 @@ jobs:
107
107
pip install -vv -e .
108
108
SKIP_BZIP_TEST=true pytest -vv fitsio
109
109
110
+ - name : test install sdist .gz with no unit tests
111
+ shell : bash -l {0}
112
+ run : |
113
+ rm -rf build*
114
+ rm -rf $HOME/cfitsio-static-install
115
+ find . -name "*.so" -type f -delete
116
+ rm -rf dist
117
+
118
+ python setup.py sdist
119
+
120
+ pip install -vv --no-deps --no-build-isolation dist/*.tar.gz
121
+ cd ..
122
+ python -c "import fitsio; assert fitsio.__version__ != '0.0.0'"
123
+ cd -
124
+ pip uninstall fitsio --yes
125
+
126
+ - name : test sdist
127
+ shell : bash -l {0}
128
+ run : |
129
+ rm -rf build*
130
+ rm -rf $HOME/cfitsio-static-install
131
+ find . -name "*.so" -type f -delete
132
+ rm -rf dist
133
+
134
+ python setup.py sdist
135
+ pushd dist/
136
+
137
+ fname=$(ls fitsio*.gz)
138
+ tar xvfz "$fname"
139
+ dname=$(echo "$fname" | sed 's/\.tar\.gz//')
140
+ pushd $dname
141
+
142
+ pip install -vv -e .
143
+ SKIP_BZIP_TEST=true pytest -vv fitsio
144
+
145
+ popd
146
+ popd
147
+
110
148
- name : flake8
111
149
shell : bash -l {0}
112
150
run : |
Original file line number Diff line number Diff line change 1
- version 1.2.3 (not yet released)
1
+ version 1.2.3
2
2
-------------
3
3
4
4
Changes
5
5
6
6
- bundle cfitsio 4.4.0.
7
+ - update manifest to include new cfitsio
7
8
8
9
Bug Fixes
9
10
10
11
- Reading images with empty slices was returning data
11
12
- Using cfitsio 4.4.0 fixes a bug reading HIERARCH+CONTINUE keywords
13
+ - zlib subdir not in manifest
12
14
13
15
version 1.2.2
14
16
-------------
Original file line number Diff line number Diff line change 1
1
include *.txt
2
2
include README.md
3
- recursive-include cfitsio-4.2 .0 *
3
+ recursive-include cfitsio-4.4 .0 *
4
4
recursive-include patches *
5
5
recursive-include fitsio/test_images *
6
+ recursive-include zlib *
You can’t perform that action at this time.
0 commit comments