Skip to content

Commit 035ed16

Browse files
authored
Merge pull request #189 from mkoeppe/sdist_include_configure
Include generated `configure` script in sdist
2 parents d4769cf + 279ca0c commit 035ed16

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/wheels.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ jobs:
2222
- uses: actions/setup-python@v4
2323
- name: make sdist
2424
run: |
25-
python3 -m pip install build
26-
python3 -m build --sdist
25+
make dist
2726
- uses: actions/upload-artifact@v3
2827
with:
2928
path: "dist/*.tar.gz"

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ install: configure
2222
$(PIP) install --no-build-isolation --no-index --ignore-installed --no-deps .
2323

2424
dist: configure
25+
$(PIP) install build
2526
chmod -R go+rX-w .
26-
umask 0022 && $(PYTHON) setup.py sdist --formats=gztar
27+
umask 0022 && $(PYTHON) -m build --sdist
2728

2829
doc: install
2930
cd docs && $(MAKE) html

README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,12 @@ Links
4343
Changelog
4444
---------
4545

46+
1.11.4 (2023-10-07)
47+
^^^^^^^^^^^^^^^^^^^
48+
49+
* Include generated `configure` script in the sdist again.
50+
51+
4652
1.11.3 (2023-10-04)
4753
^^^^^^^^^^^^^^^^^^^
4854

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.4a0.dev0
1+
1.11.4

0 commit comments

Comments
 (0)