vaex-astro 0.9.2__tar.gz → 0.10.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. vaex_astro-0.10.0/PKG-INFO +23 -0
  2. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/setup.py +5 -3
  3. vaex_astro-0.10.0/vaex/astro/_version.py +2 -0
  4. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/fits.py +1 -0
  5. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/tap.py +1 -1
  6. vaex_astro-0.10.0/vaex_astro.egg-info/PKG-INFO +23 -0
  7. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex_astro.egg-info/entry_points.txt +0 -1
  8. vaex_astro-0.10.0/vaex_astro.egg-info/requires.txt +2 -0
  9. vaex-astro-0.9.2/PKG-INFO +0 -10
  10. vaex-astro-0.9.2/vaex/astro/_version.py +0 -2
  11. vaex-astro-0.9.2/vaex_astro.egg-info/PKG-INFO +0 -10
  12. vaex-astro-0.9.2/vaex_astro.egg-info/requires.txt +0 -2
  13. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/LICENSE.txt +0 -0
  14. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/MANIFEST.in +0 -0
  15. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/setup.cfg +0 -0
  16. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/__init__.py +0 -0
  17. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/astropy_table.py +0 -0
  18. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/export.py +0 -0
  19. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/gadget.py +0 -0
  20. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/legacy.py +0 -0
  21. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/transformations.py +0 -0
  22. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex/astro/votable.py +0 -0
  23. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex_astro.egg-info/SOURCES.txt +0 -0
  24. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex_astro.egg-info/dependency_links.txt +0 -0
  25. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex_astro.egg-info/not-zip-safe +0 -0
  26. {vaex-astro-0.9.2 → vaex_astro-0.10.0}/vaex_astro.egg-info/top_level.txt +0 -0
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: vaex-astro
3
+ Version: 0.10.0
4
+ Summary: Astronomy related transformations and FITS file support
5
+ Home-page: https://www.github.com/maartenbreddels/vaex
6
+ Author: Maarten A. Breddels
7
+ Author-email: maartenbreddels@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: vaex-core~=4.5
12
+ Requires-Dist: astropy>=6.0.0
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: license
19
+ Dynamic: license-file
20
+ Dynamic: requires-dist
21
+ Dynamic: summary
22
+
23
+ Astronomy related transformations and FITS file support
@@ -1,10 +1,10 @@
1
1
  import os
2
- import imp
3
2
  from setuptools import setup
3
+ from importlib.machinery import SourceFileLoader
4
4
 
5
5
  dirname = os.path.dirname(__file__)
6
6
  path_version = os.path.join(dirname, 'vaex/astro/_version.py')
7
- version = imp.load_source('version', path_version)
7
+ version = SourceFileLoader('version', path_version).load_module()
8
8
 
9
9
  name = 'vaex'
10
10
  author = 'Maarten A. Breddels'
@@ -12,12 +12,14 @@ author_email= 'maartenbreddels@gmail.com'
12
12
  license = 'MIT'
13
13
  version = version.__version__
14
14
  url = 'https://www.github.com/maartenbreddels/vaex'
15
- install_requires_astro = ['vaex-core>=4.5.0,<5', 'astropy']
15
+ install_requires_astro = ['vaex-core~=4.5', 'astropy>=6.0.0']
16
16
 
17
17
  setup(
18
18
  name=name + '-astro',
19
19
  version=version,
20
20
  description='Astronomy related transformations and FITS file support',
21
+ long_description="Astronomy related transformations and FITS file support",
22
+ long_description_content_type="text/markdown",
21
23
  url=url,
22
24
  author=author,
23
25
  author_email=author_email,
@@ -0,0 +1,2 @@
1
+ __version_tuple__ = (0, 10, 0)
2
+ __version__ = '0.10.0'
@@ -18,6 +18,7 @@ logger = logging.getLogger("vaex.astro.fits")
18
18
 
19
19
 
20
20
  class FitsBinTable(DatasetMemoryMapped):
21
+ snake_name='fits'
21
22
  def __init__(self, filename, write=False, fs_options={}, fs=None):
22
23
  super(FitsBinTable, self).__init__(filename, write=write)
23
24
  self.ucds = {}
@@ -81,7 +81,7 @@ class DatasetTap(DatasetArrays):
81
81
  'DOUBLE':np.float64,
82
82
  'BIGINT':np.int64,
83
83
  'INTEGER':np.int32,
84
- 'BOOLEAN':np.bool8
84
+ 'BOOLEAN': np.bool_ if np.lib.NumpyVersion(np.__version__) >= '1.24.0' else np.bool8
85
85
  }
86
86
  #not supported types yet 'VARCHAR',', u'BOOLEAN', u'INTEGER', u'CHAR
87
87
  def __init__(self, tap_url="http://gaia.esac.esa.int/tap-server/tap/g10_smc", table_name=None):
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: vaex-astro
3
+ Version: 0.10.0
4
+ Summary: Astronomy related transformations and FITS file support
5
+ Home-page: https://www.github.com/maartenbreddels/vaex
6
+ Author: Maarten A. Breddels
7
+ Author-email: maartenbreddels@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE.txt
11
+ Requires-Dist: vaex-core~=4.5
12
+ Requires-Dist: astropy>=6.0.0
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: license
19
+ Dynamic: license-file
20
+ Dynamic: requires-dist
21
+ Dynamic: summary
22
+
23
+ Astronomy related transformations and FITS file support
@@ -9,4 +9,3 @@ votable = vaex.astro.votable:VOTable
9
9
 
10
10
  [vaex.plugin]
11
11
  astro = vaex.astro.legacy:add_plugin
12
-
@@ -0,0 +1,2 @@
1
+ vaex-core~=4.5
2
+ astropy>=6.0.0
vaex-astro-0.9.2/PKG-INFO DELETED
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: vaex-astro
3
- Version: 0.9.2
4
- Summary: Astronomy related transformations and FITS file support
5
- Home-page: https://www.github.com/maartenbreddels/vaex
6
- Author: Maarten A. Breddels
7
- Author-email: maartenbreddels@gmail.com
8
- License: MIT
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
@@ -1,2 +0,0 @@
1
- __version_tuple__ = (0, 9, 2)
2
- __version__ = '0.9.2'
@@ -1,10 +0,0 @@
1
- Metadata-Version: 1.0
2
- Name: vaex-astro
3
- Version: 0.9.2
4
- Summary: Astronomy related transformations and FITS file support
5
- Home-page: https://www.github.com/maartenbreddels/vaex
6
- Author: Maarten A. Breddels
7
- Author-email: maartenbreddels@gmail.com
8
- License: MIT
9
- Description: UNKNOWN
10
- Platform: UNKNOWN
@@ -1,2 +0,0 @@
1
- vaex-core<5,>=4.5.0
2
- astropy
File without changes
File without changes
File without changes