Skip to content

Commit

Permalink
Bump version and update pyproject.toml metadata (#1316)
Browse files Browse the repository at this point in the history
Also ensures that we no longer clear the README when uploading to PyPI
:)
  • Loading branch information
charliermarsh authored Feb 15, 2024
1 parent 55808a4 commit 06f2b6e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 24 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/build-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build sdist"
uses: PyO3/maturin-action@v1
with:
Expand All @@ -70,8 +68,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels - x86_64"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -110,8 +106,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels - universal2"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -161,8 +155,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: ${{ matrix.platform.arch }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -209,8 +201,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -284,8 +274,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -350,8 +338,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -418,8 +404,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -489,8 +473,6 @@ jobs:
with:
python-version: ${{ env.PYTHON_VERSION }}
architecture: x64
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down Expand Up @@ -552,8 +534,6 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: "Prep README.md"
run: echo "# uv" > README.md
- name: "Build wheels"
uses: PyO3/maturin-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/uv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.0.4"
version = "0.1.0"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
Expand Down
17 changes: 15 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,35 @@ build-backend = "maturin"
[project]
name = "uv"
version = "0.1.0rc1"
authors = [{ name = "uv" }]
description = "An extremely fast Python package installer and resolver, written in Rust."
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
requires-python = ">=3.8"
keywords = []
keywords = [
"uv", "requirements", "packaging"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
]
readme = "README.md"

[project.urls]
Repository = "https://github.com/astral-sh/uv"
Documentation = "https://github.com/astral-sh/uv"

[tool.maturin]
bindings = "bin"
Expand Down

0 comments on commit 06f2b6e

Please sign in to comment.