summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* xfail the test for non-dotted versionsbugfix/449-disallow-the-nondotRonny Pfannschmidt2020-05-311-0/+1
| | | | xref #411 #449
* disallow tags without dot againRonny Pfannschmidt2020-05-312-1/+6
| | | | addresses #449, but the issue will stay open until tests for the regression are added
* changelogv4.1.1Ronny Pfannschmidt2020-05-261-0/+6
|
* Merge pull request #450 from pypa/bugfix/448-pyproject-remove-jaraco.windowsRonny Pfannschmidt2020-05-261-1/+1
|\ | | | | fix #448: remove the missed jaraco.windows reference
| * fix #448: remove the missed jaraco.windows referencebugfix/448-pyproject-remove-jaraco.windowsRonny Pfannschmidt2020-05-261-1/+1
|/
* Merge pull request #447 from pypa/infra/release-prepv4.1.0Ronny Pfannschmidt2020-05-251-0/+11
|\ | | | | update changelog and prepare for the next release
| * update changeloginfra/release-prepRonny Pfannschmidt2020-05-251-0/+11
|/
* Merge pull request #446 from henryiii/henryiii/win27Ronny Pfannschmidt2020-05-256-7/+232
|\ | | | | Python 2.7 fixes
| * Adding Windows + Py 2.7 test, skipsHenry Schreiner2020-05-253-2/+11
| |
| * Revert part of 8f7c2fb39c8fddafb4197d7998056f47db43b7d6Henry Schreiner2020-05-254-5/+221
|/
* Merge pull request #445 from henryiii/patch-1Ronny Pfannschmidt2020-05-251-0/+4
|\ | | | | Add universal wheels
| * Add universal wheelsHenry Schreiner2020-05-251-0/+4
|/ | | See #442
* Merge pull request #441 from chrisjbillington/release-branch-semver-fixRonny Pfannschmidt2020-05-253-3/+14
|\ | | | | Add release-branch-semver to setup.cfg
| * Add a shim with deprecation warning for release_branch_semver()chrisjbillington2020-05-251-0/+10
| |
| * Add release-branch-semver to setup.cfgchrisjbillington2020-05-243-3/+4
| | | | | | | | | | And rename the function to `release_branch_semver_version`, for consistency with the other functions for versions schemes.
* | Merge pull request #443 from mgorny/py27-fnfeRonny Pfannschmidt2020-05-253-4/+4
|\ \ | | | | | | Fix missing git/hg handling in tests for py27
| * | Fix missing git/hg handling in tests for py27Michał Górny2020-05-253-4/+4
| |/
* | Merge pull request #444 from mgorny/tox-flake8Ronny Pfannschmidt2020-05-251-1/+1
|\ \ | |/ |/| tox.ini: Fix paths in flake8 target
| * tox.ini: Fix paths in flake8 targetMichał Górny2020-05-251-1/+1
|/
* Merge pull request #439 from pypa/infra/py39Ronny Pfannschmidt2020-05-241-4/+23
|\ | | | | add python3.9 via deadsnakes action
| * also build python 3.9 eggsRonny Pfannschmidt2020-05-241-3/+11
| |
| * add python3.9 via deadsnakes actionRonny Pfannschmidt2020-05-241-1/+12
|/
* trigger builds on tags in futureRonny Pfannschmidt2020-05-241-1/+4
|
* Merge branch 'bugfix/workflow'v4.0.0Ronny Pfannschmidt2020-05-241-1/+1
|\
| * simplify the dist-upload conditionbugfix/workflowRonny Pfannschmidt2020-05-231-1/+1
| |
* | Merge pull request #437 from pypa/bugfix/436-realpath-everywhereRonny Pfannschmidt2020-05-221-1/+1
|\ \ | |/ |/| Use realpath during relpath to avoid cross-volume issues on Windows.
| * Use realpath during relpath to avoid cross-volume issues on Windows. Fixes #436.bugfix/436-realpath-everywhereJason R. Coombs2020-05-221-1/+1
|/
* run pipelines on releasesRonny Pfannschmidt2020-05-211-0/+1
|
* Merge pull request #435 from pypa/release-prepRonny Pfannschmidt2020-05-213-14/+8
|\ | | | | Release prep
| * correct supported python versionsrelease-prepRonny Pfannschmidt2020-05-212-0/+2
| |
| * update changelogRonny Pfannschmidt2020-05-211-0/+6
| |
| * drop default.nixRonny Pfannschmidt2020-05-211-14/+0
|/
* Merge pull request #433 from pypa/drop-samefileRonny Pfannschmidt2020-05-217-307/+91
|\ | | | | Drop samefile and use a conditional dependency for old pythons
| * drop samefile and switch to declarative metadataRonny Pfannschmidt2020-05-217-307/+91
|/ | | | Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
* Merge pull request #434 from pypa/drop-travisRonny Pfannschmidt2020-05-205-58/+49
|\ | | | | Drop Travis
| * drop travisdrop-travisRonny Pfannschmidt2020-05-205-58/+49
|/ | | | | | | * port check-readme to twine check before dist upload * port self install tests to github * artifact downloads
* Merge pull request #430 from chrisjbillington/release-branch-semver-schemeRonny Pfannschmidt2020-05-164-16/+95
|\ | | | | Add release-branch-semver scheme
| * Allow guess_next_simple_semver to ignore unneeded partschrisjbillington2020-05-111-10/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | guess_next_simple_semver previously would error on trying to convert the 'rc0' part of a version such as '1.2.0rc1' to an int, even if it was told to retain only the first two parts. (It would actually only error on Python 2, where the conversion to int was non-lazy) Now if it's told to retain only the first two parts, it won't try to convert anything after the first two dots to an int, so it won't error. The outcome is the same as if the bit after the second dot was a valid int (which was going to be ignored anyway, we just now don't error on it). This is useful for the release-branch-semver scheme, which wants to be able to find the next minor version even if the most recent version is a release candidate.
| * Add release-branch-semver schemechrisjbillington2020-05-114-6/+89
|/ | | | | | | | | This is a scheme that assumes that the upcoming release for most branches is a minor release, and that only for release branches (those whose branch names parse as a version number according to current configuration) is the upcoming version a patch release. Better document the differences between the schemes in README.rst
* Merge pull request #429 from mgorny/skip-gitRonny Pfannschmidt2020-05-084-6/+24
|\ | | | | Skip git tests when git is unavailable
| * Skip git tests when git is unavailableMichał Górny2020-05-074-6/+24
|/
* Merge pull request #428 from pypa/bugfix/427-utc-mismatchRonny Pfannschmidt2020-05-071-2/+3
|\ | | | | Generate the date for today in UTC
| * Generate the date for today in UTC. Fixes #427.bugfix/427-utc-mismatchJason R. Coombs2020-05-061-2/+3
| |
* | Merge pull request #426 from mgorny/hg-skipRonny Pfannschmidt2020-05-072-1/+12
|\ \ | |/ |/| Skip mercurial tests when hg is not available
| * Skip mercurial tests when hg is not availableMichał Górny2020-05-062-1/+12
|/ | | | | | | Mercurial is broken (read: crashing with bus error) on SPARC. Nevertheless, many packages need setuptools_scm even if we never ever use Mercurial checkouts. This patch makes it possible to run the test suite successfully when Mercurial is not available on the system.
* drop pypi from travis configRonny Pfannschmidt2020-05-031-24/+0
|
* pre-commit updateRonny Pfannschmidt2020-05-031-2/+2
|
* Merge pull request #422 from pypa/fix-312-document-enterprise-distrosRonny Pfannschmidt2020-05-023-6/+23
|\ | | | | closes #312 - document interaction with enterprise distros
| * closes #312 - document interaction with enterprise distrosfix-312-document-enterprise-distrosRonny Pfannschmidt2020-05-023-6/+23
|/
* Merge branch 'master' of github.com:pypa/setuptools_scmRonny Pfannschmidt2020-05-026-1/+41
|\