Skip to content

Commit

Permalink
CHORE: Fix repo name (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
aresnow1 authored Jul 7, 2023
1 parent 19e81cb commit 892e1c5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ jobs:

# if is xprobe repo, upload to pypi
- uses: pypa/[email protected]
if: github.repository == 'xprobe-inc/xoscar'
if: github.repository == 'xorbitsai/xoscar'
with:
user: __token__
password: ${{ secrets.PYPI_PASSWORD }}

# if is not xprobe repo, upload to test
- uses: pypa/[email protected]
if: github.repository != 'xprobe-inc/xoscar'
if: github.repository != 'xorbitsai/xoscar'
with:
user: __token__
password: ${{ secrets.TEST_PYPI_PASSWORD }}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

# Python actor framework for heterogeneous computing.
[![PyPI Latest Release](https://img.shields.io/pypi/v/xoscar.svg?style=for-the-badge)](https://pypi.org/project/xoscar/)
[![Coverage](https://img.shields.io/codecov/c/github/xprobe-inc/xoscar?style=for-the-badge)](https://codecov.io/gh/xprobe-inc/xoscar)
[![Build Status](https://img.shields.io/github/actions/workflow/status/xprobe-inc/xoscar/python.yaml?branch=main&style=for-the-badge&label=GITHUB%20ACTIONS&logo=github)](https://actions-badge.atrox.dev/xprobe-inc/xoscar/goto?ref=main)
[![License](https://img.shields.io/pypi/l/xoscar.svg?style=for-the-badge)](https://github.com/xprobe-inc/xoscar/blob/main/LICENSE)
[![Coverage](https://img.shields.io/codecov/c/github/xorbitsai/xoscar?style=for-the-badge)](https://codecov.io/gh/xorbitsai/xoscar)
[![Build Status](https://img.shields.io/github/actions/workflow/status/xorbitsai/xoscar/python.yaml?branch=main&style=for-the-badge&label=GITHUB%20ACTIONS&logo=github)](https://actions-badge.atrox.dev/xorbitsai/xoscar/goto?ref=main)
[![License](https://img.shields.io/pypi/l/xoscar.svg?style=for-the-badge)](https://github.com/xorbitsai/xoscar/blob/main/LICENSE)

## What is actor
Writing parallel and distributed programs is often challenging and requires a lot of time to deal with concurrency
Expand Down Expand Up @@ -43,7 +43,7 @@ belong to. This allows Xoscar to optimize communication in heterogeneous environ
units and accelerators.

## Where to get it
The source code is currently hosted on GitHub at: https://github.com/xprobe-inc/xoscar
The source code is currently hosted on GitHub at: https://github.com/xorbitsai/xoscar

Binary installers for the latest released version are available at the [Python
Package Index (PyPI)](https://pypi.org/project/xoscar).
Expand Down
6 changes: 3 additions & 3 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
# -- Project information -----------------------------------------------------

project = 'Xoscar'
copyright = '2023, Xprobe-inc'
author = 'Xprobe-inc'
copyright = '2023, Xorbits Inc.'
author = 'xorbitsai'


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -68,7 +68,7 @@
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/xprobe-inc/xoscar",
"url": "https://github.com/xorbitsai/xoscar",
"icon": "fa-brands fa-github",
"type": "fontawesome",
},
Expand Down
4 changes: 2 additions & 2 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ environments with multiple processing units and accelerators.

Where to get it
---------------
The source code is currently hosted on GitHub at: https://github.com/xprobe-inc/xoscar
The source code is currently hosted on GitHub at: https://github.com/xorbitsai/xoscar

Binary installers for the latest released version are available at the
`Python Package Index (PyPI) <https://pypi.org/project/xoscar/>`_.
Expand All @@ -76,7 +76,7 @@ Binary installers for the latest released version are available at the

License
-------
`Apache 2 <https://github.com/xprobe-inc/xoscar/blob/main/LICENSE>`_
`Apache 2 <https://github.com/xorbitsai/xoscar/blob/main/LICENSE>`_

.. toctree::
:maxdepth: 2
Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ author_email = [email protected]
maintainer = Qin Xuye
maintainer_email = [email protected]
license = Apache License 2.0
url = http://github.com/xprobe-inc/xoscar
url = http://github.com/xorbitsai/xoscar
python_requires = >=3.8
classifier =
Operating System :: OS Independent
Expand Down

0 comments on commit 892e1c5

Please sign in to comment.