summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* add python testsworkflowsRonny Pfannschmidt2020-05-019-143/+173
| | | | | | | | | | | | | | | | | | | | | | | | | | port testsuite to pathlib, and try to resolve windows short paths trace git toplevel mismatch (observed on win32 name shortening) exclude python2 on windows remove the appveyor config, its broken drop most travis envs that we have in github workflows now add actions for creating egg artifacts/wheels/sdists WIP: experiment with act WIP: fix workflow typo WIP: add missed runs-on fix typoed excludes fixup: upload actuall wheel/sdist in the build step style fixes for the actions config
* add pre-commit github actionRonny Pfannschmidt2020-05-011-0/+20
|
* Merge pull request #408 from con-f-use/masterRonny Pfannschmidt2020-05-014-2/+26
|\ | | | | Change ScmVersion.time to UTC
| * Make black happycon-f-use2020-03-182-1/+6
| |
| * Fix file locationscon-f-use2020-03-184-473/+14
| |
| * Document change to UTCcon-f-use2020-03-182-0/+7
| |
| * Change ScmVersion.time to UTCcon-f-use2020-03-182-0/+471
| |
* | Merge pull request #412 from Flameeyes/masterRonny Pfannschmidt2020-05-016-6/+18
|\ \ | |/ |/| Fix documentation for tag_regex and allow single-digit version numbers.
| * Select git tags based on presence of numbers, rather than dots.Diego Elio Pettenò2020-03-252-1/+9
| | | | | | | | | | | | | | | | | | | | The default `git describe` command had an undocumented `--match *.*` in it, intended to skip over tags that may represent human-readable checkpoints. Unfortunately this means it would be ignoring single-component versions. Instead look for presence of digits in the tag, it's still a heuristic, but it should cover all previous cases, and fix single component versions.
| * Extract version correctly from tags with a single digit.Diego Elio Pettenò2020-03-252-1/+6
| | | | | | | | | | | | | | | | | | 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.
| * Avoid overriding the default tag_regex in tests.Diego Elio Pettenò2020-03-251-1/+0
| | | | | | | | | | | | | | | | This appears to test something different than test_config.test_tag_regex, but somehow also overrides the regular expression with a very old (3-groups) one. Remove the override and use the default regex instead (it works).
| * Fix documentation of `tag_regex` parameter.Diego Elio Pettenò2020-03-251-3/+3
|/ | | | | Since 5853b0c72be9bf30701e58d9d72b413cb62ff1c9 (July 2018), the regex is expected to have a single group, named `version` or unnamed.
* Merge pull request #407 from hugovk/drop-the-dotRonny Pfannschmidt2020-02-271-1/+1
|\ | | | | Drop the dot: py.test -> pytest
| * Drop the dot https://twitter.com/pytestdotorg/status/753767547866972160Hugo2020-02-271-1/+1
|/
* Merge pull request #405 from con-f-use/no_local_versionv3.5.0Ronny Pfannschmidt2020-02-085-1/+21
|\ | | | | no-local-version scheme and improved documentation
| * no-local-version scheme and improved documentationcon-f-use2020-02-075-1/+21
|/
* Update CHANGELOG.rstRonny Pfannschmidt2020-01-251-0/+5
|
* Merge pull request #404 from TheTripleV/fix-403Ronny Pfannschmidt2020-01-252-0/+2
|\ | | | | #Fix 403: Close file descriptor before terminating process
| * Add issue number to test caseTheTripleV2020-01-251-0/+1
| |
| * Close subprocess files descriptorTheTripleV2020-01-251-0/+1
|/
* Merge pull request #400 from gesslerpd/fix/windowsv3.4.3Ronny Pfannschmidt2020-01-222-2/+7
|\ | | | | Fix #399: ensure the git file finder closes file descriptor after reading archive
| * update changeloggesslerpd2020-01-201-1/+1
| |
| * terminate process to cleanupgesslerpd2020-01-201-3/+3
| |
| * Fix #399gesslerpd2020-01-202-2/+7
|/
* changelogv3.4.2Ronny Pfannschmidt2020-01-191-0/+5
|
* Merge pull request #396 from pypa/revert-346-first-parentRonny Pfannschmidt2020-01-191-1/+1
|\ | | | | Revert "git: DEFAULT_DESCRIBE: add --first-parent"
| * Revert "git: DEFAULT_DESCRIBE: add --first-parent"revert-346-first-parentRonny Pfannschmidt2020-01-191-1/+1
| |
* | Merge pull request #398 from pypa/fix-395-pass-in-tag-regexRonny Pfannschmidt2020-01-193-2/+13
|\ \ | |/ |/| fix #395: correctly transfer tag regex in the Configuration constructor
| * fix #395: correctly transfer tag regex in the Configuration constructorfix-395-pass-in-tag-regexRonny Pfannschmidt2020-01-193-2/+13
|/
* Merge pull request #390 from blueyed/fix-testRonny Pfannschmidt2020-01-181-1/+2
|\ | | | | Fix testing/test_git.py::test_git_archive_export_ignore
| * Fix testing/test_git.py::test_git_archive_export_ignoreDaniel Hahler2020-01-101-1/+2
| | | | | | | | | | | | Ensure `$HOME` is unset, since otherwise `init.templatedir` might get picked up from the user's config, which might e.g. not include the `.git/info` dir then.
* | Merge pull request #389 from blueyed/testpathsRonny Pfannschmidt2020-01-181-0/+1
|\ \ | | | | | | pytest: configure testpaths
| * | pytest: configure testpathsDaniel Hahler2020-01-101-0/+1
| |/
* | Update CHANGELOG.rstv3.4.1Ronny Pfannschmidt2020-01-181-1/+2
| |
* | Merge pull request #377 from pypa/fix-374Ronny Pfannschmidt2020-01-184-47/+50
|\ \ | | | | | | fix #374 - initialize configuration for toml integration
| * | unify configruation initialization and configuration defaultsfix-374Ronny Pfannschmidt2019-11-283-47/+41
| | |
| * | fix #374 - initialize configuration for toml integrationRonny Pfannschmidt2019-11-282-5/+14
| | |
* | | update changelog for next releaseRonny Pfannschmidt2020-01-171-0/+5
| | |
* | | changelogv3.4.0Ronny Pfannschmidt2020-01-171-0/+2
| |/ |/|
* | Merge pull request #388 from Alex-X-W/fix_typoRonny Pfannschmidt2020-01-091-2/+2
|\ \ | | | | | | fix typo in date marks
| * | fix typo in date marksXuan Wang2020-01-091-2/+2
|/ /
* | Merge pull request #379 from mrg29/masterRonny Pfannschmidt2020-01-081-4/+5
|\ \ | | | | | | fix TOML examples
| * \ Merge branch 'master' into masterRonny Pfannschmidt2020-01-086-20/+104
| |\ \ | |/ / |/| |
* | | Merge pull request #382 from RonnyPfannschmidt/check-381Ronny Pfannschmidt2020-01-085-2/+60
|\ \ \ | | | | | | | | fix #381 - clean out env vars from the git hook system
| * | | # fixup manifestRonny Pfannschmidt2019-12-131-0/+1
| | | |
| * | | fix #381 - clean out env vars from the git hook systemRonny Pfannschmidt2019-12-134-2/+59
| | |/ | |/|
* | | Merge pull request #384 from aodag/aodag-patch-1Ronny Pfannschmidt2020-01-081-2/+2
|\ \ \ | | | | | | | | fix typo README.rst
| * | | Update README.rstAtsushi Odagiri2019-12-141-2/+2
| | | | | | | | | | | | | | | | - https://www.python.org/dev/peps/pep-0518/#json-schema - https://github.com/pypa/setuptools_scm/blob/master/src/setuptools_scm/config.py#L123
* | | | Merge pull request #387 from layday/mention-importlib-metadataRonny Pfannschmidt2020-01-081-16/+41
|\ \ \ \ | |/ / / |/| | | Mention importlib.metadata as alternative to pkg_resources
| * | | Mention importlib.metadata as alternative to pkg_resourceslayday2020-01-071-16/+41
|/ / / | | | | | | | | | | | | Split the `pkg_resources` example into a separate section because this is not specific to setup.py.