Include timezone data in windows distribution

This commit is contained in:
2024-12-13 15:36:22 +01:00
parent b48bea7726
commit 2e565f55be
3 changed files with 9 additions and 1 deletions

View File

@@ -41,3 +41,4 @@ dependencies:
- pip:
- orsopy==1.2.1
- pyyaml==6.0.2
- tzdata

View File

@@ -2,5 +2,5 @@
Package to handle data redction at AMOR instrument to be used by eos.py script.
"""
__version__ = '2.1.4'
__version__ = '2.1.3'
__date__ = '2024-12-13'

View File

@@ -1,4 +1,11 @@
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_all
datas = []
binaries = []
hiddenimports = []
tmp_ret = collect_all('tzdata')
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
a = Analysis(