1
0
mirror of https://github.com/pypiserver/pypiserver synced 2024-11-09 16:45:51 +01:00
pypiserver/AUTHORS.rst
Matthew Planchard b1bf1ed248
Drop support for Python 3.4 (#321)
* Drop support for Python 3.4

Python 3.4 is no longer supported. Even pyenv is failing to install it
for me, because apparently the currnet version of `ensurepip` bombs for
3.4. Pypiserver may still work on 3.4, but testing on it has becomes
more of a hassle than it's worth.

* Fix @mplanchard's email address

Just realized my email address in the authors' file has been wrong for
pretty much forever.

* Remove GL CI

GitLab CI is nice, but doesn't support forks, and so isn't going to be
viable for this project.
2020-07-09 22:39:01 -05:00

16 lines
449 B
ReStructuredText

#######
AUTHORS
#######
(in chronological order)
- Ralf Schmitt <ralf@systemexit.de>,
- Kostis Anagnostopoulos <ankostis@gmail.com>
- Matthew Planchard <msplanchard@gmail.com>
- run ``git log --format='%aN' | sort -u`` to see all contributors, or::
git log --format='%aN <%aE>' |
awk '{arr[$0]++} END{for (i in arr){print arr[i], i;}}' |
sort -rn | cut -d\ -f2-
to sort them by the numbers of commits.