Skip to content

Commit e09e435

Browse files
authored
Merge pull request #355 from PyO3/release-1.7.0
release: 1.7.0
2 parents 4e15de8 + 6a27c47 commit e09e435

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = 1.6.0
4+
current_version = 1.7.0
55
message = release: {new_version}
66

77
[bumpversion:file:pyproject.toml]

.github/workflows/python-publish.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ jobs:
2626
# Install build and packaging dependencies.
2727
# setuptools-scm is necessary for ensuring all files from VCS (such as
2828
# examples) are in the sdist.
29-
run: |
30-
pip install --upgrade pip setuptools wheel twine setuptools-scm
29+
run: pip install -U pip build twine
3130
- name: Build and publish
3231
env:
3332
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
3433
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3534
run: |
36-
python setup.py sdist bdist_wheel
35+
python -m build
3736
twine upload dist/*

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 1.7.0 (2023-08-22)
44
### Packaging
55
- Remove direct imports from `distutils`. [#336](https://github.com/PyO3/setuptools-rust/pull/336)
66
- Include `py.typed` when packaging to denote that setuptools-rust includes type hints. [#338](https://github.com/PyO3/setuptools-rust/pull/338)

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "setuptools-rust"
3-
version = "1.6.0"
3+
version = "1.7.0"
44
description = "Setuptools Rust extension plugin"
55
readme = "README.md"
66
requires-python = ">=3.7"
@@ -47,7 +47,7 @@ documentation = "https://setuptools-rust.readthedocs.io"
4747
changelog = "https://github.com/PyO3/setuptools-rust/blob/main/CHANGELOG.md"
4848

4949
[build-system]
50-
requires = ["setuptools>=62.4"]
50+
requires = ["setuptools>=62.4", "setuptools_scm"]
5151
build-backend = "setuptools.build_meta"
5252

5353
[tool.isort]

setuptools_rust/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = version = "1.6.0"
1+
__version__ = version = "1.7.0"
22
__version_tuple__ = version_tuple = tuple(
33
map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
44
)

0 commit comments

Comments
 (0)