<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/setuptools-scm.git/src/setuptools_scm/config.py, branch bugfix/workflow</title>
<subtitle>github.com: pypa/setuptools_scm.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/'/>
<entry>
<title>Allow getting the version from the parent directory suffix.</title>
<updated>2020-05-01T14:28:29+00:00</updated>
<author>
<name>Antony Lee</name>
<email>anntzer.lee@gmail.com</email>
</author>
<published>2020-03-22T13:48:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=aaab738a9e698b4d84c1f0724341a1b009b766ea'/>
<id>aaab738a9e698b4d84c1f0724341a1b009b766ea</id>
<content type='text'>
Add a `parentdir_prefix_version` config parameter which allows lets
setuptools_scm get a version string from the name of the parent
directory: if `parentdir_prefix_version = "foo-"` and the parent
directory is named `foo-v12.34`, then the version is 12.34.  This is
only active if the parameter is set (it defaults to unset, i.e. the
feature is opt-in), if getting the version from the SCM failed, *and*
there's no metadata already present.  However, this has higher priority
than `fallback_version` (which remains the last-resort fallback).

This feature is intended to support the tarballs that GitHub
automatically creates for all releases, which have no metadata but
follow the correct naming scheme for the feature to work.

This feature is directly inspired from versioneer's `parentdir_prefix`
setting.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a `parentdir_prefix_version` config parameter which allows lets
setuptools_scm get a version string from the name of the parent
directory: if `parentdir_prefix_version = "foo-"` and the parent
directory is named `foo-v12.34`, then the version is 12.34.  This is
only active if the parameter is set (it defaults to unset, i.e. the
feature is opt-in), if getting the version from the SCM failed, *and*
there's no metadata already present.  However, this has higher priority
than `fallback_version` (which remains the last-resort fallback).

This feature is intended to support the tarballs that GitHub
automatically creates for all releases, which have no metadata but
follow the correct naming scheme for the feature to work.

This feature is directly inspired from versioneer's `parentdir_prefix`
setting.
</pre>
</div>
</content>
</entry>
<entry>
<title>Extract version correctly from tags with a single digit.</title>
<updated>2020-03-25T14:39:32+00:00</updated>
<author>
<name>Diego Elio Pettenò</name>
<email>flameeyes@flameeyes.com</email>
</author>
<published>2020-03-25T14:37:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=ad80a3dd2174671d49ef4dd3b431f381d6b0219c'/>
<id>ad80a3dd2174671d49ef4dd3b431f381d6b0219c</id>
<content type='text'>
This makes sure that even if there's only a single group of digits in the
version, it's correctly extracted, and any suffix ignored.

Also add tests for those particular cases to avoid regressions.

See Issue #411 for debugging details.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This makes sure that even if there's only a single group of digits in the
version, it's correctly extracted, and any suffix ignored.

Also add tests for those particular cases to avoid regressions.

See Issue #411 for debugging details.
</pre>
</div>
</content>
</entry>
<entry>
<title>fix #395: correctly transfer tag regex in the Configuration constructor</title>
<updated>2020-01-19T12:01:54+00:00</updated>
<author>
<name>Ronny Pfannschmidt</name>
<email>opensource@ronnypfannschmidt.de</email>
</author>
<published>2020-01-19T12:01:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=8b8a6d622bbec52f30069ce6a899d936a9dde116'/>
<id>8b8a6d622bbec52f30069ce6a899d936a9dde116</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>unify configruation initialization and configuration defaults</title>
<updated>2019-11-28T19:58:36+00:00</updated>
<author>
<name>Ronny Pfannschmidt</name>
<email>opensource@ronnypfannschmidt.de</email>
</author>
<published>2019-11-28T19:58:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=4014d4d27ddf7d39fa2b406ecde855efe58d1ae0'/>
<id>4014d4d27ddf7d39fa2b406ecde855efe58d1ae0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove 'enabled' boolean and rely on presence of 'tool.setuptools_scm' section to enable the functionality.</title>
<updated>2019-11-24T22:58:11+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-11-24T22:58:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=bf15ea917a10aa4f939eb40206dc07e178460f20'/>
<id>bf15ea917a10aa4f939eb40206dc07e178460f20</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid file-not-found errors when pyproject.toml isn't present</title>
<updated>2019-11-24T13:07:35+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-11-24T13:07:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=1fe1c650a6b01e8f5f9c8dff7a1bb5ad132588db'/>
<id>1fe1c650a6b01e8f5f9c8dff7a1bb5ad132588db</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>setuptools_scm is disabled by default</title>
<updated>2019-11-24T13:05:43+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-11-24T13:05:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=bba4a3a4f980a83b78864c66e80367c5476c4a9f'/>
<id>bba4a3a4f980a83b78864c66e80367c5476c4a9f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fade to black</title>
<updated>2019-11-24T11:54:26+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-11-24T11:54:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=548cbcbd823898fb5b9271344926f840f1a7c2d0'/>
<id>548cbcbd823898fb5b9271344926f840f1a7c2d0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Move section to `tool:` namespace</title>
<updated>2019-11-23T23:48:25+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-11-23T23:48:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=59fbdf845f4d5b17ceaeba15413f182499ba6a52'/>
<id>59fbdf845f4d5b17ceaeba15413f182499ba6a52</id>
<content type='text'>
Co-Authored-By: Ronny Pfannschmidt &lt;opensource@ronnypfannschmidt.de&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Co-Authored-By: Ronny Pfannschmidt &lt;opensource@ronnypfannschmidt.de&gt;</pre>
</div>
</content>
</entry>
<entry>
<title>Illustrate how reading the config from a file might operate.</title>
<updated>2019-10-21T23:59:01+00:00</updated>
<author>
<name>Jason R. Coombs</name>
<email>jaraco@jaraco.com</email>
</author>
<published>2019-10-21T23:59:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/setuptools-scm.git/commit/?id=eb59201397e15d6de33b4aa741d04ae27da3317d'/>
<id>eb59201397e15d6de33b4aa741d04ae27da3317d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
