ahawker / ulid

Universally Unique Lexicographically Sortable Identifier (ULID) in Python 3
Apache License 2.0
695 stars 42 forks source link

pyup.io: Scheduled daily dependency update on monday #279

Closed pyup-bot closed 6 years ago

pyup-bot commented 6 years ago

Update tox from 3.4.0 to 3.5.0.

Changelog ### 3.5.0 ``` ------------------ Bugfixes ^^^^^^^^ - intermittent failures with ``--parallel--safe-build``, instead of mangling with the file paths now uses a lock to make the package build operation thread safe and is now on by default (``--parallel--safe-build`` is now deprecated) - by :user:`gaborbernat` (`1026 <https://github.com/tox-dev/tox/issues/1026>`_) Features ^^^^^^^^ - Added ``temp_dir`` folder configuration (defaults to ``{toxworkdir}/.tmp``) that contains tox temporary files. Package builds now create a hard link (if possible, otherwise copy - notably in case of Windows Python 2.7) to the built file, and feed that file downstream (e.g. for pip to install it). The hard link is removed at the end of the run (what it points though is kept inside ``distdir``). This ensures that a tox session operates on the same package it built, even if a parallel tox run builds another version. Note ``distdir`` will contain only the last built package in such cases. - by :user:`gaborbernat` (`1026 <https://github.com/tox-dev/tox/issues/1026>`_) Documentation ^^^^^^^^^^^^^ - document tox environment recreate rules (:ref:`recreate`) - by :user:`gaborbernat` (`93 <https://github.com/tox-dev/tox/issues/93>`_) - document inside the ``--help`` how to disable colorized output via the ``PY_COLORS`` operating system environment variable - by :user:`gaborbernat` (`163 <https://github.com/tox-dev/tox/issues/163>`_) - document all global tox flags and a more concise format to express default and type - by :user:`gaborbernat` (`683 <https://github.com/tox-dev/tox/issues/683>`_) - document command line interface under the config section `cli <https://tox.readthedocs.io/en/latest/config.html?highlight=clicli>`_ - by :user:`gaborbernat` (`829 <https://github.com/tox-dev/tox/issues/829>`_) ================== How to release tox ================== This matches the current model that can be summarized as this: * tox has no long lived branches. * Pull requests get integrated into master by members of the project when they feel confident that this could be part of the next release. Small fix ups might be done right after merge instead of discussing back and forth to get minor problems fixed, to keep the workflow simple. **Normal releases**: done from master when enough changes have accumulated (whatever that means at any given point in time). **"Special" releases**: (in seldom cases when master has moved on and is not in a state where a quick release should be done from that state): the current release tag is checked out, the necessary fixes are cherry picked and a package with a patch release increase is built from that state. This is not very clean but seems good enough at the moment as it does not happen very often. If it does happen more often, this needs some rethinking (and rather into the direction of making less buggy releases than complicating release development/release process). HOWTO ===== Prerequisites ------------- * Push and merge rights for https://github.com/tox-dev/tox, also referred to as the *upstream*. * A UNIX system that has: - ``tox`` - ``git`` able to push to upstream * Accountability: if you cut a release that breaks the CI builds of projects using tox, you are expected to fix this within a reasonable time frame (hours/days - not weeks/months) - if you don't feel quite capable of doing this yet, partner up with a more experienced member of the team and make sure they got your back if things break. Release ------- Run the release command and make sure you pass in the desired release number: bash tox -e release -- <version> Create a pull request and wait until it the CI passes. Now make sure you merge the PR and delete the release branch. The CI will automatically pick the tag up and release it, wait to appear in PyPi. Only merge if the later happens. Post release activities ----------------------- Make sure to let the world know that a new version is out by whatever means you see fit. As a minimum, send out a mail notification by triggering the notify tox environment: bash TOX_DEV_GOOGLE_SECRET=our_secret tox -e notify Note you'll need the ``TOX_DEV_GOOGLE_SECRET`` key, what you can acquire from other maintainers. ```
Links - PyPI: https://pypi.org/project/tox - Changelog: https://pyup.io/changelogs/tox/ - Docs: https://tox.readthedocs.org/
codecov[bot] commented 6 years ago

Codecov Report

Merging #279 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff          @@
##           master   #279   +/-   ##
=====================================
  Coverage     100%   100%           
=====================================
  Files           5      5           
  Lines         267    267           
  Branches       58     58           
=====================================
  Hits          267    267

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 0052567...00c99cb. Read the comment docs.