1
0
mirror of https://github.com/pypiserver/pypiserver synced 2025-02-22 19:19:37 +01:00
Commit Graph

205 Commits

Author SHA1 Message Date
Johannes Faigle
5fd640062c
Update README to reflect run/update commands (#451)
* DOC: Update README to use new run/update commands

* DOC: Remove running on heroku/dotcloud section from README

The linked repo isn't maintained with last update in 2012

* DOC: Update missing pypi-server cmds with run command

* DOC: Fix CI status badge
2023-02-02 13:19:04 +01:00
Mason Lin
ae3dcf2bbd
feat: 🩺 allow customized health check endpoint (#442)
* feat: 🩺 allow customized health check endpoint

Get the liveness endpoint from the environment variable `HEALTH_ENDPOINT` and verify it. If the customized endpoint is invalied, it will fallback to the DEFAULT_HEALTH_ENDPOINT.

* test:  Test customized endpoint feature

* fix: 🚨 fix check

* feat: Use CLI interface to set health endpoint

* style: 💄 fix black format

* Separate 'build app' and 'add routes'

https://github.com/pypiserver/pypiserver/pull/442#discussion_r973771421

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* keep DEFAULTS in config.py

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* style alignment

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* make CLI arg description more clear

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* style: 🎨 style alignment

* refactor:  SRP, add routes after app created, instead of patching in app_from_config

* style: 🎨 format CLI help

* test:  add test_setup_routes_from_config

* fix: 🐛 test name doesn't work as expected because of using the wrong ids generator.

* test: 🧪 add config error cases for health endpoint

* test:  fix health_endpoint_arg tests

* fix:  Do not fallback to default silently, should raise error

* test: 🧪 add test_health_endpoint in test_main

* test:  setup routes in main

* docs: 📝 Update the help command output in the Quickstart

* docs: 🐛 missing space

* docs: 📝 Add 'Custom Health Check Endpoint' to 'Recipes'

* docs: 📝 refine README

* revert:  revert auto isoft

* build: 💚 fix mypy, missing return types

* Update README.rst

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* Update README.rst

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* Update pypiserver/config.py

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* Update README.rst

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

* style: 💄 black format

* Update README.rst

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>

Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>
2022-11-02 12:32:20 +01:00
Dmitrii Orlov
249cc6c7c4
chore(ver): bump 1.5.0-->1.5.1 2022-10-18 16:06:16 +02:00
github-actions[bot]
16280557c0
chore(auto-release-candidate-10-01-2022) (#450)
* chore(rc-changes): update Changes.rst

* chore: adjust the CHANGES description

* chore: update release date in README

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>
2022-10-18 16:04:22 +02:00
Kian-Meng Ang
a67829eea6
chore: Fix typos (#431) 2022-05-23 08:49:18 +00:00
Dmitrii Orlov
6502f031d4
chore(ver): bump 2.0.0dev1-->1.5.0 2022-05-01 22:12:50 +02:00
Dmitrii Orlov
c63b2b1337
Revert "chore(ver): bump 2.0.0dev1-->1.5.0"
This reverts commit 0e8a49dd1c23c39166cbd8ac727d295337cf5978.
2022-04-26 01:57:02 +02:00
Dmitrii Orlov
0e8a49dd1c
chore(ver): bump 2.0.0dev1-->1.5.0 2022-04-26 01:23:49 +02:00
Dmitrii Orlov
04a1826b9a
Revert "chore(ver): bump 2.0.0dev1-->1.5.0"
This reverts commit e675ab71fda6edc7bfc420da1ff7c1f67faadd09.
2022-04-25 23:46:40 +02:00
Dmitrii Orlov
e675ab71fd
chore(ver): bump 2.0.0dev1-->1.5.0 2022-04-25 23:44:12 +02:00
github-actions[bot]
4485902b6d
chore(auto-release-candidate-04-01-2022): 1.5.0 rc (#426)
* chore(rc-changes): update Changes.rst

* Adjust logs in CHANGES.rst

* Bump RC version to 1.5.0

* adjust RC candidate date

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Dmitrii Orlov <dmtree.dev@yahoo.com>
2022-04-25 23:35:25 +02:00
Dmitrii Orlov
ee912cf1d3 chore(new-people): adjust maintainers & add call for new people 2022-02-20 21:06:12 +01:00
awachtler
7693c03485 json_info/doc: fixed typo in README.rst
<
2021-08-15 07:28:22 +02:00
awachtler
4e189aec9c json_info/doc: fix formatting 2021-08-13 06:59:36 +02:00
awachtler
fb81ab767a doc/json_info: added usage description with micropython. 2021-08-13 06:57:13 +02:00
Bao Trinh
302b4a8a43
Correct README example (#380)
The readme incorrectly specifies `watchdog` as the name of the extra to install. It's actually specified as `cache`. see: df300de33d/setup.py (L49)
2021-03-04 09:08:16 -06:00
sangarshanan
7688e1b2bd
Fix silly typo in the readme :) (#362) 2020-11-19 19:22:58 -06:00
Matthew Planchard
d0694d9e15
Switch to GH actions (#361)
* Switch to GH actions

Removes the travis config and adds a GH actions config. Resolves #360.

As part of this:

- only runs the README check once, instead of for each python version
- only runs mypy once, removing it from tox
- unifies the pypy and cpython tests in tox by separating dev and test
  requirements, and only installing the latter for running tests in tox

* Update README w/badge & link to GH actions tests
2020-11-15 20:08:58 -06:00
Matthew Planchard
47d6efe196
Restore ability to drop hashing in new config (#347)
Thanks @elfjes for pointing out that I'd missed this! I also went ahead
and bumped the version in the README to 2.0.0dev1, so that it's clear
that what's in master shouldn't be what people expect from pypi or in the
docker image.
2020-10-11 14:16:57 -05:00
Matthew Planchard
8014fa56fc
Merge branch 'v1.4.x' 2020-10-10 08:21:35 -05:00
Matthew Planchard
776d319eb1
chore(ver): bump 1.4.1-->1.4.2 2020-10-10 08:15:56 -05:00
Matthew Planchard
ab8b33e5fb
CHORE: prep for v1.4.2 2020-10-10 08:14:50 -05:00
Matthew Planchard
5ca5351d80
chore(ver): bump 1.4.0-->1.4.1 2020-10-05 20:51:01 -05:00
Matthew Planchard
1f696e56c1
DOC: Update changelog and readme for v1.4.1 2020-10-05 20:20:53 -05:00
Matthew Planchard
4ab210c82b
MAINT: drop standalone, drop py 2.7 and 3.5 (#338) 2020-10-03 22:25:14 -05:00
Matthew Planchard
b208103951
chore(ver): bump 1.3.2-->1.4.0 2020-10-03 17:45:40 -05:00
Matthew Planchard
aa2d78cd45
DOC: Add link to zulip chat to README 2020-10-03 15:25:53 -05:00
Daan Luttik
dbb7761606
Moved flask-pypi-proxy and pip2pi to a new "Unmaintained or archived" header since the former is archived and the latter has seen barely any development since mid 2015 and no development since sep 2019. (#326) 2020-09-14 22:16:27 -05:00
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
Gerardwx
54d35cdbaf
Typo (#303) 2020-07-09 22:05:37 -05:00
Fernando B
11ed7e6abd
readme (#316)
Co-authored-by: Fernando Balandran <ic3balandran@yahoo.com>
2020-06-05 11:31:14 -05:00
Julian Berman
a7c49fd3e7
Slightly clarify the relationship to warehouse. (#308)
* Slightly clarify the relationship to warehouse.

Closes: #307

* Wording tweaks and split out the related software into its own section.

* Separate the note in a note directive

Co-authored-by: Matthew Planchard <mplanchard@users.noreply.github.com>

Co-authored-by: Matthew Planchard <mplanchard@users.noreply.github.com>
2020-06-04 19:39:21 -05:00
Kristian Sloth Lauszus
6589170cfb Updated Docker Compose example with HTTPS configuration using Traefik (#295) 2020-01-19 18:30:10 -06:00
Matthew Planchard
9a309883be
chore(ver): bump 1.3.1-->1.3.2 2020-01-11 17:26:14 -06:00
Robin De Schepper
124a2a9c43 Update README.rst (#289) 2020-01-11 16:55:17 -06:00
Matthew Planchard
5cd70bfe86
Chore: Revert "Update badge for gitlab (#272)"
This reverts commit de6a9ce19440975759e979fc47ba870192c99370.

Not going to be able to use GL because they do not support forks, so
reverting associated changes.
2019-10-19 13:05:52 -05:00
Matthew Planchard
de6a9ce194
Update badge for gitlab (#272) 2019-09-17 20:50:48 -05:00
Matthew Planchard
4b65dcdf42
Prep for 1.3.1 2019-09-10 18:19:38 -05:00
Géry Ogam
acfb0a6c3f Update README.rst (#270)
* Update README.rst

* Update README.rst

* Update __main__.py

* Update README.rst

* Update __main__.py
2019-09-10 17:35:18 -05:00
Markus Holtermann
03e30846d8 Fix link to SO question in readme (#258) 2019-06-10 17:54:38 -05:00
Matthew Planchard
2ef26a87ee
REL: 1.3.0 (#250)
* Compose updates; doc updates; changelog for 1.3.0

* chore(ver): bump 1.2.7-->1.3.0

* update date in README

* rst is not markdown

* Add issue numbers to changelog
2019-05-05 16:47:06 -05:00
Matthew Planchard
0c5c6d5ac0
Remove pypiuploader instructions
Resolves #241

@willrogers points out that `pypiuploader` appears to be a dead project,
so we'll remove specific instructions for it in the docs, unless it
is confirmed to be otherwise.
2019-02-06 17:00:06 -06:00
Matthew Planchard
33b4e21017
chore(ver): bump 1.2.6-->1.2.7 2019-01-31 18:44:09 -06:00
Matthew Planchard
e6a8bc556c
chore(ver): bump 1.2.5-->1.2.6 2019-01-26 16:15:55 -06:00
Matthew Planchard
4ab0c77e30 Updated release dates 2018-11-11 11:43:32 -06:00
Matthew Planchard
9956dedd6e Update README 2018-11-11 11:43:32 -06:00
Matthew Planchard
cf60c22d45 chore(ver): bump 1.2.5.dev0-->1.2.5 2018-11-11 11:43:32 -06:00
Jacob Hayes
57428d010f Replace .htaccess references with .htpasswd 2018-09-06 10:27:25 -05:00
Matthew Planchard
34f2b1e109 chore(ver): bump 1.2.4-->1.2.5.dev0 2018-08-06 17:51:23 -05:00
Matthew Planchard
e3c44bf7c8 Updated date in README 2018-08-06 17:26:49 -05:00