aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix deps fetching on the root commitAntonin Delpeuch2023-09-223-5/+38
| | | | Closes #125.
* Merge pull request #124 from wetneb/self_test_suiteAdam Spiers2023-09-225-0/+38
|\
| * Start test suite of running git-deps on itselfAntonin Delpeuch2023-09-205-0/+38
| | | | | | | | For #4.
* | Merge pull request #123 from wetneb/115-remove-sixAdam Spiers2023-09-191-1/+0
|\ \ | |/ |/| Remove dependency to six
| * Remove dependency to six. Closes #115Antonin Delpeuch2023-09-191-1/+0
|/
* Merge pull request #122 from wetneb/setuptools_upgradeAdam Spiers2023-09-184-20/+55
|\
| * Remove Travis configAntonin Delpeuch2023-09-181-14/+0
| |
| * Upgrade setuptoolsAntonin Delpeuch2023-09-182-6/+12
| |
| * Create CI.ymlAntonin Delpeuch2023-09-181-0/+43
|/
* Merge pull request #111 from hagai-helman/masterAdam Spiers2022-06-211-1/+2
|\
| * Import `safe_join` from `werkzeug.security`Hagai Helman Tov2022-06-211-1/+2
|/ | | | Fixes #110.
* Merge pull request #113 from toabctl/drop-setuptools-markdownAdam Spiers2022-06-214-8/+5
|\
| * Drop support for Python 3.6Adam Spiers2022-06-213-6/+3
| | | | | | | | | | | | | | | | | | | | These days pygit2 requires Python >= 3.7: https://pypi.org/project/pygit2/ So reluctantly drop support for 3.6. If anyone can figure out a way of bringing it back (e.g. via using old versions of pygit2 where necessary), we could consider doing that.
| * Drop setuptools-markdownThomas Bechtold2022-06-211-2/+2
|/ | | | | | | | | | | | | | | Stop using setuptools-markdown which is no longer maintained and doesn't work anymore. Instead use the long_description_content_type variable (see [0]) to indicate that the given long_description is in markdown format. This fixes: AttributeError: module 'pypandoc' has no attribute 'convert' [0] https://dustingram.com/articles/2018/03/16/markdown-descriptions-on-pypi/ Fixes #112
* Handle server port in use error more gracefully (#88)Adam Spiers2021-04-041-2/+15
| | | | Fixes #88
* Fix publishing procedure1.1.0Adam Spiers2021-04-041-3/+6
|
* Expand AUTHORS.rstAdam Spiers2021-04-041-1/+4
|
* Remove sphinx.ext.pngmathAdam Spiers2021-04-041-1/+1
| | | | Apparently this isn't found any more.
* Add maintainer-guide to the docsAdam Spiers2021-04-041-2/+3
|
* Be stricter with docsAdam Spiers2021-04-041-1/+1
|
* Update sphinx docs locationAdam Spiers2021-04-041-1/+1
|
* Update CHANGES.rstAdam Spiers2021-04-041-0/+63
|
* Add flake8 to TravisAdam Spiers2021-04-031-0/+1
|
* Fix some flake8 issuesAdam Spiers2021-04-031-9/+9
|
* Merge pull request #94 from aspiers/ctrl-cAdam Spiers2021-04-031-1/+1
|\ | | | | Don't totally ignore KeyboardInterrupt
| * Don't totally ignore KeyboardInterruptAdam Spiers2021-04-031-1/+1
|/ | | | | | | | Commit 2a05400e2 ignored KeyboardInterrupt. I'm *guessing* I did that to avoid an ugly stacktrace, but even if so, the user's desire to interrupt execution should not be ignored in this way. Fixes #83 and #89.
* Improve HTML installation instructions slightlyAdam Spiers2021-04-031-9/+12
|
* Update INSTALL.md for Python 3.x (#98)Adam Spiers2021-04-031-6/+43
| | | | Fixes #98.
* Update tox.ini for newer PythonsAdam Spiers2021-04-031-1/+1
|
* Merge pull request #106 from aspiers/fix-travisAdam Spiers2021-04-031-15/+6
|\ | | | | Fix Travis builds (#73)
| * Fix Travis builds (#73)Adam Spiers2021-04-031-15/+6
|/ | | | Fixes #73.
* Merge pull request #100 from ↵Adam Spiers2021-04-031-1/+1
|\ | | | | | | | | aspiers/dependabot/npm_and_yarn/git_deps/html/jquery-3.5.0 Bump jquery from 3.0.0 to 3.5.0 in /git_deps/html
| * Bump jquery from 3.0.0 to 3.5.0 in /git_deps/htmldependabot[bot]2020-04-291-1/+1
| | | | | | | | | | | | | | Bumps [jquery](https://github.com/jquery/jquery) from 3.0.0 to 3.5.0. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](https://github.com/jquery/jquery/compare/3.0.0...3.5.0) Signed-off-by: dependabot[bot] <support@github.com>
* | Use line-buffering on output (#87)Adam Spiers2021-04-031-1/+1
|/ | | | | | | | | | Use explicit line buffering of STDOUT. Originally buffering was disabled by #81 to allow better interaction with tee(1), but this breaks Python 3 as per #87. So use line buffering instead. Closes #87 and #93.
* add direct links to presentation videosAdam Spiers2019-06-051-2/+2
|
* add links to blog and Nashville presentationAdam Spiers2019-06-051-3/+6
|
* Merge pull request #86 from GarySmith/fix-linkAdam Spiers2019-01-311-1/+1
|\ | | | | Fix link in readme to USE-CASES.md
| * Fix link in readme to USE-CASES.mdGary Smith2019-01-301-1/+1
|/
* Merge pull request #81 from bmwiedemann/unbufferedAdam Spiers2019-01-211-0/+2
|\ | | | | Use unbuffered IO
| * Use unbuffered IOBernhard M. Wiedemann2019-01-101-0/+2
| | | | | | | | | | | | | | Without this patch, git-deps | tee $FILE only produces output in 4KB chunks so when you have to kill the process after a day, you are left with incomplete output.
* | Merge pull request #84 from mstefani/masterAdam Spiers2019-01-211-1/+5
|\ \ | |/ |/| Don't crash with commit messages that aren't valid utf-8
| * Don't crash with commit messages that aren't valid utf-8Michael Stefaniuc2019-01-201-1/+5
|/
* Merge pull request #80 from aspiers/READMEAdam Spiers2019-01-074-211/+361
|\ | | | | improve docs
| * add Credits sectionAdam Spiers2019-01-061-0/+9
| |
| * split off use cases to separate fileAdam Spiers2019-01-062-161/+163
| |
| * add missing sections to TOCAdam Spiers2019-01-061-0/+2
| |
| * make CONTRIBUTING.md link consistent with othersAdam Spiers2019-01-061-1/+1
| |
| * split off history into HISTORY.mdAdam Spiers2019-01-062-33/+37
| |
| * split off usage into USAGE.mdAdam Spiers2019-01-062-51/+57
| |
| * add use cases sub-TOCAdam Spiers2019-01-061-0/+11
| |