Skip to content

Commit

Permalink
Consistent PyPI name pytorch-frame (#468)
Browse files Browse the repository at this point in the history
This PR makes a cosmetic change and makes no change that affects users.

`-` and `_` mean the same thing at pypi.org/project/pytorch-frame as per
https://packaging.python.org/en/latest/specifications/name-normalization/#name-normalization.
  • Loading branch information
akihironitta authored Dec 3, 2024
1 parent 4b3ee12 commit 6fca625
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To develop PyTorch Frame on your machine, here are some tips:
It is advised to run this command repeatedly to confirm that installations across all locations are properly removed.

```bash
pip uninstall pytorch_frame
pip uninstall pytorch-frame
```

1. Fork and clone the PyTorch Frame repository:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ The benchmark script for Hugging Face text encoders is in this [file](https://gi
PyTorch Frame is available for Python 3.9 to Python 3.11.

```
pip install pytorch_frame
pip install pytorch-frame
```

See [the installation guide](https://pytorch-frame.readthedocs.io/en/latest/get_started/installation.html) for other options.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/get_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ Installation via PyPI

.. code-block:: none
pip install pytorch_frame
pip install pytorch-frame
# Install with optional dependencies
pip install pytorch_frame[full]
pip install pytorch-frame[full]
Installation from master
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires=["flit_core >=3.2,<4"]
build-backend="flit_core.buildapi"

[project]
name="pytorch_frame"
name="pytorch-frame"
version="0.2.3"
authors=[
{name="PyG Team", email="[email protected]"},
Expand Down Expand Up @@ -42,7 +42,7 @@ test=[
"mypy",
]
dev=[
"pytorch_frame[test]",
"pytorch-frame[test]",
"pre-commit",
]
full=[
Expand Down

0 comments on commit 6fca625

Please sign in to comment.