Skip to content

Commit

Permalink
Pins astlib to 0.11.8
Browse files Browse the repository at this point in the history
Deals with a test breaking issue induced by Astlib 0.11.10 under setuptools 59.6.0 which affects Python 3.6 support.

The issue breaks existing tests. Until we migrate to test under Python 3.8 and Python 3.10 this should fix the existing tests.
  • Loading branch information
bennahugo authored Jan 19, 2024
1 parent a0f50a3 commit 5877d00
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@
__version__ = "1.7.3"

# PyQt 5 has not been added here are. It needs to be installed via apt-get which is a Tigger v1.6.0 requirement.
requirements = ['astro_kittens', 'numpy', 'scipy', 'astlib', 'astropy', 'future', 'python-casacore']
requirements = ['astro_kittens',
'numpy',
'scipy',
'astlib<=0.11.10; python_version >="3.8"',
'astlib<=0.11.8; python_version <"3.8"',
'astropy',
'future',
'python-casacore'
]

scripts = [
'Tigger/bin/tigger-convert',
Expand Down

0 comments on commit 5877d00

Please sign in to comment.