Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build sdists by default again #571

Merged
merged 1 commit into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 11 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,10 @@ Changelog
Current versions
================

Version 4.1.3, 2022-01-11
Version 4.1.4, 2022-01-13
-------------------------

- Fix pre-commit error: The unauthenticated git protocol on port 9418 is no longer supported, :issue:`565`

.. note::

PyScaffold 4.1 is the last release to support Python 3.6
- Ensure build configuration produces ``sdist`` as it is needed by conda, :issue:`570`


Version 3.3, 2020-12-24
Expand All @@ -48,6 +44,15 @@ Version 3.3, 2020-12-24
Older versions
==============

Version 4.1.3, 2022-01-11
-------------------------

- Fix pre-commit error: The unauthenticated git protocol on port 9418 is no longer supported, :issue:`565`

.. note::

PyScaffold 4.1 is the last release to support Python 3.6

Version 4.1.2, 2022-01-04
-------------------------

Expand Down
3 changes: 1 addition & 2 deletions src/pyscaffold/templates/tox_ini.template
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ deps =
build: build[virtualenv]
commands =
clean: python -c 'from shutil import rmtree; rmtree("build", True); rmtree("dist", True)'
build: python -m build {posargs:--wheel}
# You can also explicitly use the `--sdist` flag if you really want to
build: python -m build {posargs}


[testenv:{docs,doctests,linkcheck}]
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ deps =
build: build[virtualenv]
commands =
clean: python -c 'from shutil import rmtree; rmtree("build", True); rmtree("dist", True)'
build: python -m build {posargs:--wheel}
# You can also explicitly use the `--sdist` flag if you really want to
build: python -m build {posargs}


[testenv:{docs,doctests,linkcheck}]
Expand Down