Skip to content

Commit

Permalink
Build sdists by default again
Browse files Browse the repository at this point in the history
Closes #570
  • Loading branch information
abravalheri committed Jan 13, 2022
1 parent ee88459 commit 39afd58
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
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

0 comments on commit 39afd58

Please sign in to comment.