Skip to content

Commit 5c7d113

Browse files
authored
[Fix] Update name on PyPI
Summary: Simplify the name on PyPI, and some minor infra updates. Test Plan: - Reviewed-by: - Issue: -
1 parent c3b4592 commit 5c7d113

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,10 @@ jobs:
3434
- uses: actions/setup-python@v2
3535

3636
- name: Install cibuildwheel
37-
run: python -m pip install cibuildwheel==2.3.1
37+
run: python -m pip install cibuildwheel==2.5.0
3838

3939
- name: Build wheels
4040
run: python -m cibuildwheel --output-dir dist
41-
env:
42-
CIBW_BUILD: cp39-* cp310-* *-manylinux_x86_64 *-macosx_x86_64
4341
- uses: actions/upload-artifact@v2
4442
with:
4543
name: dist

README.rst

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
code-data-share-for-python
22
~~~~~~~~~~~~~~~~~~~~~~~~~~
33

4-
.. image:: https://img.shields.io/pypi/pyversions/code-data-share-for-python
5-
.. image:: https://img.shields.io/pypi/implementation/code-data-share-for-python
4+
.. image:: https://img.shields.io/pypi/pyversions/code-data-share
5+
:target: https://pypi.org/project/code-data-share/
6+
.. image:: https://img.shields.io/pypi/implementation/code-data-share
7+
:target: https://pypi.org/project/code-data-share/
68
.. image:: https://img.shields.io/badge/platform-linux--64%20%7C%20osx--64-lightgrey
9+
:target: https://pypi.org/project/code-data-share/
710

811
Introduction
912
============
@@ -32,7 +35,7 @@ Install
3235
-------
3336
::
3437

35-
pip install code-data-share-for-python
38+
pip install code-data-share
3639

3740
Determine the imported packages
3841
-------------------------------

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ requires = ["setuptools", "wheel", "scikit-build", "cmake", "ninja"]
33

44
[tool.pytest.ini_options]
55
testpaths = ["tests"]
6+
7+
[tool.cibuildwheel]
8+
build = "cp38-* cp39-* cp310-*"
9+
archs = ["auto64"]

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
i.unlink()
1010

1111
setup(
12-
name='code-data-share-for-python',
12+
name='code-data-share',
1313
version='0.0.1',
1414
packages=['cds'],
1515
package_dir={'': 'src'},
@@ -21,7 +21,7 @@
2121
'Development Status :: 3 - Alpha',
2222
'Operating System :: MacOS :: MacOS X',
2323
# 'Operating System :: Microsoft :: Windows',
24-
'Operating System :: POSIX',
24+
'Operating System :: POSIX :: Linux',
2525
'Programming Language :: Python :: 3.8',
2626
'Programming Language :: Python :: 3.9',
2727
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)