Skip to content
This repository was archived by the owner on Feb 2, 2024. It is now read-only.

Commit defe2aa

Browse files
Update package wheel (#957)
* Update packages wheel deps * Make wheel version public like * Update info in setup.py * Fix issues in readme render for wheels * Fix Pep8 issues * Correct requirements in setup.py
1 parent 0dea511 commit defe2aa

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

README.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
**********************************
1+
*****
2+
Sdc
3+
*****
4+
25
Intel® Scalable Dataframe Compiler
3-
**********************************
6+
###################################################
47

58
.. image:: https://travis-ci.com/IntelPython/sdc.svg?branch=master
69
:target: https://travis-ci.com/IntelPython/sdc
@@ -21,7 +24,7 @@ Intel® Scalable Dataframe Compiler (Intel® SDC) is an extension of `Numba*`_
2124
that enables compilation of `Pandas*`_ operations. It automatically vectorizes and parallelizes
2225
the code by leveraging modern hardware instructions and by utilizing all available cores.
2326

24-
Intel® SDC documentation can be found `here <https://intelpython.github.io/sdc-doc/>`_.
27+
Intel® SDC documentation can be found `here <https://intelpython.github.io/sdc-doc/>`__.
2528

2629
.. note::
2730
For maximum performance and stability, please use numba from ``intel/label/beta`` channel.
@@ -171,7 +174,7 @@ The built documentation will be located in the ``./sdc/docs/build/html`` directo
171174
To preview the documentation open ``index.html`` file.
172175

173176

174-
More information about building and adding documentation can be found `here <docs/README.rst>`_.
177+
More information about building and adding documentation can be found `here <docs/README.rst>`__.
175178

176179

177180
Running unit tests

setup.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -352,15 +352,15 @@ def run(self):
352352
sdc_build_commands = versioneer.get_cmdclass()
353353
sdc_build_commands['build_doc'] = SDCBuildDoc
354354
sdc_build_commands.update({'style': style})
355-
sdc_version = versioneer.get_version()
356-
sdc_release = 'Alpha ({})'.format(versioneer.get_version())
355+
sdc_version = versioneer.get_version().split('+')[0]
357356

358357
setup(name=SDC_NAME_STR,
359358
version=sdc_version,
360359
description='Numba* extension for compiling Pandas* operations',
361360
long_description=readme(),
361+
long_description_content_type='text/markdown',
362362
classifiers=[
363-
"Development Status :: 2 - Pre-Alpha",
363+
"Development Status :: 4 - Beta",
364364
"Intended Audience :: Developers",
365365
"Operating System :: POSIX :: Linux",
366366
"Programming Language :: Python",
@@ -370,14 +370,19 @@ def run(self):
370370
],
371371
keywords='data analytics distributed Pandas Numba',
372372
url='https://github.com/IntelPython/sdc',
373+
license='BSD',
373374
author='Intel Corporation',
375+
maintainer="Intel Corp.",
376+
maintainer_email="scripting@intel.com",
377+
platforms=["Windows", "Linux", "Mac OS-X"],
378+
python_requires='>=3.6',
374379
packages=find_packages(),
375380
package_data={'sdc.tests': ['*.bz2'], },
376381
install_requires=[
377382
'numpy>=1.16',
378-
'pandas>=1.2.0',
383+
'pandas==1.2.0',
379384
'pyarrow==2.0.0',
380-
'numba>=0.52.0,<0.53',
385+
'numba==0.52.0',
381386
'tbb'
382387
],
383388
cmdclass=sdc_build_commands,

0 commit comments

Comments
 (0)