| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a couple of tools for myselftools | James Socol | 2022-11-06 | 2 | -0/+37 |
| | | | | | | | | Configures .coveragerc to ignore files that don't matter as well as certain lines. Include a Makefile to remind me how to do releases. | ||||
| * | Merge pull request #177 from jsocol/release/v4.0.1v4.0.1 | James Socol | 2022-11-06 | 4 | -7/+14 |
| |\ | | | | | Release v4.0.1 | ||||
| | * | Release v4.0.1 | James Socol | 2022-11-06 | 4 | -7/+14 |
| |/ | | | | The trove classifiers for Python versions was bothering me too much. | ||||
| * | Merge pull request #173 from jsocol/release/v4v4.0.0 | James Socol | 2022-11-05 | 4 | -6/+6 |
| |\ | | | | | Bump version to v4.0.0 | ||||
| | * | Bump version to v4.0.0 | James Socol | 2022-11-05 | 4 | -6/+6 |
| |/ | |||||
| * | Merge pull request #171 from cclauss/pyproject.toml | James Socol | 2022-11-05 | 4 | -34/+38 |
| |\ | | | | | PEP 621: Migrate to pyproject.toml | ||||
| | * | tox.ini: isolated_build = True | Christian Clauss | 2022-11-05 | 1 | -0/+1 |
| | | | |||||
| | * | PEP 621: Migrate to pyproject.toml | Christian Clauss | 2022-11-05 | 3 | -34/+37 |
| |/ | |||||
| * | Merge pull request #172 from jsocol/fix/119/async-decorator | James Socol | 2022-11-05 | 3 | -8/+43 |
| |\ | | | | | Fix timing decorator for async functions | ||||
| | * | Fix timing decorator for async functions | James Socol | 2022-11-05 | 3 | -8/+43 |
| |/ | | | | | | | | | Well I sat on this for long enough that it got easier: async/await is no longer a syntax error in any supported version of Python. That meant that it was relatively straightforward to apply @nkonin's proposed patch from #119. Fixes #119. | ||||
| * | Merge pull request #170 from jsocol/update-changelog | James Socol | 2022-11-05 | 1 | -2/+12 |
| |\ | | | | | Update CHANGELOG ahead of 4.0 | ||||
| | * | Update CHANGELOG ahead of 4.0 | James Socol | 2022-11-05 | 1 | -2/+12 |
| |/ | | | | | Moves the CHANGES file to CHANGELOG.md, and updates it for the v4.0 release. | ||||
| * | Merge pull request #169 from jsocol/readme | James Socol | 2022-11-05 | 1 | -2/+2 |
| |\ | | | | | Replace README badge for real | ||||
| | * | Replace README badge for real | James Socol | 2022-11-05 | 1 | -2/+2 |
| |/ | | | | | I honestly don't know what happened there. I could have sworn I replaced all three lines of the badge, not just the alt text. :confused: | ||||
| * | Merge pull request #168 from jsocol/fix-linter | James Socol | 2022-11-05 | 1 | -1/+1 |
| |\ | | | | | Fix linting in CI for real | ||||
| | * | Fix linting in CI for real | James Socol | 2022-11-05 | 1 | -1/+1 |
| |/ | | | | | This is what I get for enabling auto-merge before making lint a required status check. | ||||
| * | Merge pull request #167 from jsocol/ci/linter | James Socol | 2022-11-05 | 1 | -0/+9 |
| |\ | | | | | Lint in CI | ||||
| | * | Lint in CI | James Socol | 2022-11-05 | 1 | -0/+9 |
| |/ | | | | Add the flake8 step back to the CI config in actions. | ||||
| * | Merge pull request #166 from jsocol/drop-future-imports | James Socol | 2022-11-05 | 9 | -15/+0 |
| |\ | | | | | Remove __future__ imports | ||||
| | * | Remove __future__ imports | James Socol | 2022-11-05 | 9 | -15/+0 |
| |/ | | | | | | All of the features from __future__ that were in this library have been in Python since 3.0. Now that Python 2 is no longer supported, we no longer need them. | ||||
| * | Merge pull request #164 from jsocol/update-readme-badge | James Socol | 2022-11-05 | 1 | -1/+1 |
| |\ | | | | | Update the README status badge to Actions | ||||
| | * | Update the README status badge to Actions | James Socol | 2022-11-05 | 1 | -1/+1 |
| |/ | | | | | Farethewell, TravisCI and badge. Also, I know these tests are still failing. | ||||
| * | Merge pull request #165 from jsocol/fix/python3.10plus | James Socol | 2022-11-05 | 5 | -14/+13 |
| |\ | | | | | Replace nose with nose2 | ||||
| | * | Replace nose with nose2 | James Socol | 2022-11-05 | 5 | -14/+13 |
| |/ | | | | | | | Nose stopped getting updates around 2015. Nose2 is is the continued evolution of that project. Ultimately, this library's test suite is simple enough to move toward pure unittest, but that will require a larger refactor to wrap everything in unittest.TestCase. | ||||
| * | Merge pull request #162 from jsocol/py3/test-on-310-311 | James Socol | 2022-11-05 | 2 | -21/+3 |
| |\ | | | | | Have actions test on Python 3.10 and 3.11 | ||||
| | * | Rebase and condense again | James Socol | 2022-11-05 | 2 | -21/+3 |
| | | | |||||
| | * | Have actions test on Python 3.10 and 3.11 | James Socol | 2022-11-05 | 1 | -1/+1 |
| |/ | | | | These tests will fail for now, but will get me set up to fix the issues. | ||||
| * | Merge pull request #163 from jsocol/clean-up-ci | James Socol | 2022-11-05 | 3 | -17/+26 |
| |\ | | | | | Split out CI(push) from PR(pull_request) actions | ||||
| | * | Use different names for different workflows | James Socol | 2022-11-05 | 2 | -2/+2 |
| | | | |||||
| | * | Split out CI(push) from PR(pull_request) actions | James Socol | 2022-11-05 | 3 | -16/+25 |
| |/ | | | | | This way we don't run everything twice on a PR. And drops the old Travis-CI config because, yeah. | ||||
| * | Merge pull request #158 from cclauss/patch-2 | James Socol | 2022-11-05 | 2 | -4/+22 |
| |\ | | | | | GitHub Action to run tox tests | ||||
| | * | Nose fails on Python 3.10+ | Christian Clauss | 2022-09-05 | 1 | -16/+1 |
| | | | |||||
| | * | tox.ini: py37,py38,py39,py310,py311,pypy3 | Christian Clauss | 2022-09-05 | 1 | -4/+4 |
| | | | |||||
| | * | GitHub Action to run tox tests | Christian Clauss | 2022-09-05 | 1 | -0/+33 |
| |/ | | | Because Travis CI is on an extended vacation. | ||||
| * | Merge pull request #141 from jsocol/pr/131master | James Socol | 2020-10-08 | 2 | -8/+4 |
| |\ | | | | | Travis CI: Add Python 3.8 to the testing | ||||
| | * | setup.py: Add support for Python 3.8 | Christian Clauss | 2020-10-08 | 1 | -1/+1 |
| | | | |||||
| | * | Travis CI: Add Python 3.8 to the testing | Christian Clauss | 2020-10-08 | 1 | -7/+3 |
| | | | |||||
| * | | Merge pull request #140 from jsocol/pr/136 | James Socol | 2020-10-08 | 3 | -0/+13 |
| |\ \ | |/ |/| | Add `close()` method to UDP client | ||||
| | * | Add `close()` method to UDP client | Jeremy Lainé | 2020-10-08 | 3 | -0/+13 |
| |/ | | | | | | Unlike its stream counterpart, the UDP client does not have a "close()" method. This means there is no public API to clean up the socket, resulting in a `ResourceWarning`. | ||||
| * | Merge pull request #126 from JasonParker/patch-1 | James Socol | 2019-05-09 | 1 | -1/+1 |
| |\ | | | | | Fix typo in configure.rst | ||||
| | * | Update configure.rst | Jason Parker | 2019-05-09 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #124 from chakas/master | James Socol | 2019-01-23 | 1 | -1/+1 |
| |\ | | | | | typo error in directory name | ||||
| | * | typo error in directory name | Chakradhar Kasturi | 2019-01-22 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #122 from hintofbasil/flake8-ci-fix | James Socol | 2018-12-13 | 1 | -1/+1 |
| |\ | | | | | Fix regex string escape in tests | ||||
| | * | Fix regex string escape in tests | hintofbasil | 2018-11-16 | 1 | -1/+1 |
| |/ | |||||
| * | Merge pull request #118 from michael-k/python3.7 | James Socol | 2018-10-28 | 3 | -1/+7 |
| |\ | | | | | Add support for Python 3.7 | ||||
| | * | Add support for Python 3.7 | Michael Käufl | 2018-08-23 | 3 | -1/+7 |
| |/ | |||||
| * | Version 3.3v3.3 | James Socol | 2018-08-22 | 3 | -6/+13 |
| | | | | | | | | | | | - Drop support for Python 2.5, 2.6, 3.2, 3.3 (#108, #116). - Add UnixSocketStatsClient (#76, #112). - Add support for timedeltas in timing() (#104, #111). - Fix timer decorator with partial functions (#85). - Remove ABCMeta metaclass (incompatible with Py3) (#109). - Refactor client module (#115). - Various doc updates (#99, #102, #110, #113, #114). | ||||
| * | Merge pull request #116 from jsocol/version-classifiers | James Socol | 2018-08-22 | 1 | -4/+0 |
| |\ | | | | | Remove old version classifiers | ||||
| | * | Remove old version classifiers | James Socol | 2018-08-22 | 1 | -4/+0 |
| |/ | |||||
