Skip to content

Commit

Permalink
Merge pull request #189 from mkoeppe/sdist_include_configure
Browse files Browse the repository at this point in the history
Include generated `configure` script in sdist
  • Loading branch information
dimpase committed Oct 7, 2023
2 parents d4769cf + 279ca0c commit 035ed16
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ jobs:
- uses: actions/setup-python@v4
- name: make sdist
run: |
python3 -m pip install build
python3 -m build --sdist
make dist
- uses: actions/upload-artifact@v3
with:
path: "dist/*.tar.gz"
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ install: configure
$(PIP) install --no-build-isolation --no-index --ignore-installed --no-deps .

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

doc: install
cd docs && $(MAKE) html
Expand Down
6 changes: 6 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ Links
Changelog
---------

1.11.4 (2023-10-07)
^^^^^^^^^^^^^^^^^^^

* Include generated `configure` script in the sdist again.


1.11.3 (2023-10-04)
^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.4a0.dev0
1.11.4

0 comments on commit 035ed16

Please sign in to comment.