mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
minor packaging fixes and bump to 0.4.21
This commit is contained in:
parent
83693a5c03
commit
02551c0152
6 changed files with 23 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
||||||
Metadata-Version: 2.1
|
Metadata-Version: 2.1
|
||||||
Name: archivebox
|
Name: archivebox
|
||||||
Version: 0.4.21
|
Version: 0.4.22
|
||||||
Summary: The self-hosted internet archive.
|
Summary: The self-hosted internet archive.
|
||||||
Home-page: https://github.com/ArchiveBox/ArchiveBox
|
Home-page: https://github.com/ArchiveBox/ArchiveBox
|
||||||
Author: Nick Sweeting
|
Author: Nick Sweeting
|
||||||
|
|
|
@ -1,25 +1,25 @@
|
||||||
requests==2.24.0
|
|
||||||
atomicwrites==1.4.0
|
atomicwrites==1.4.0
|
||||||
mypy-extensions==0.4.3
|
|
||||||
base32-crockford==0.3.0
|
|
||||||
django==3.0.8
|
|
||||||
django-extensions==3.0.3
|
|
||||||
dateparser
|
|
||||||
ipython
|
|
||||||
youtube-dl
|
|
||||||
python-crontab==2.5.1
|
|
||||||
croniter==0.3.34
|
croniter==0.3.34
|
||||||
|
dateparser
|
||||||
|
django-extensions==3.0.3
|
||||||
|
django==3.0.8
|
||||||
|
ipython
|
||||||
|
mypy-extensions==0.4.3
|
||||||
|
python-crontab==2.5.1
|
||||||
|
requests==2.24.0
|
||||||
w3lib==1.22.0
|
w3lib==1.22.0
|
||||||
|
youtube-dl
|
||||||
|
|
||||||
[dev]
|
[dev]
|
||||||
setuptools
|
bottle
|
||||||
twine
|
django-stubs
|
||||||
flake8
|
flake8
|
||||||
ipdb
|
ipdb
|
||||||
mypy
|
mypy
|
||||||
django-stubs
|
pytest
|
||||||
|
recommonmark
|
||||||
|
setuptools
|
||||||
sphinx
|
sphinx
|
||||||
sphinx-rtd-theme
|
sphinx-rtd-theme
|
||||||
recommonmark
|
stdeb
|
||||||
pytest
|
twine
|
||||||
bottle
|
|
||||||
|
|
|
@ -37,9 +37,9 @@ __all__ = ["encode", "decode", "normalize"]
|
||||||
|
|
||||||
|
|
||||||
if PY3:
|
if PY3:
|
||||||
string_types = str,
|
string_types = (str,)
|
||||||
else:
|
else:
|
||||||
string_types = basestring,
|
string_types = (basestring,) # noqa
|
||||||
|
|
||||||
# The encoded symbol space does not include I, L, O or U
|
# The encoded symbol space does not include I, L, O or U
|
||||||
symbols = '0123456789ABCDEFGHJKMNPQRSTVWXYZ'
|
symbols = '0123456789ABCDEFGHJKMNPQRSTVWXYZ'
|
||||||
|
|
|
@ -14,6 +14,8 @@ REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && p
|
||||||
|
|
||||||
cd "$REPO_DIR"
|
cd "$REPO_DIR"
|
||||||
|
|
||||||
|
# pipenv install --dev
|
||||||
|
|
||||||
./bin/build_docs.sh
|
./bin/build_docs.sh
|
||||||
./bin/build_pip.sh
|
./bin/build_pip.sh
|
||||||
./bin/build_deb.sh
|
./bin/build_deb.sh
|
||||||
|
|
|
@ -12,9 +12,8 @@ IFS=$'\n'
|
||||||
|
|
||||||
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
REPO_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && cd .. && pwd )"
|
||||||
|
|
||||||
source "$REPO_DIR/.venv/bin/activate"
|
|
||||||
cd "$REPO_DIR"
|
cd "$REPO_DIR"
|
||||||
|
source "./.venv/bin/activate"
|
||||||
|
|
||||||
|
|
||||||
# Make sure git is clean
|
# Make sure git is clean
|
||||||
|
@ -66,7 +65,7 @@ echo "[^] Uploading to pypi.org"
|
||||||
python3 -m twine upload --repository pypi dist/*
|
python3 -m twine upload --repository pypi dist/*
|
||||||
|
|
||||||
echo "[^] Uploading to launchpad.net"
|
echo "[^] Uploading to launchpad.net"
|
||||||
python3 -m dput archivebox "deb_dist/archivebox_${NEW_VERSION}-1_source.changes"
|
dput archivebox "deb_dist/archivebox_${NEW_VERSION}-1_source.changes"
|
||||||
|
|
||||||
echo "[^] Uploading docker image"
|
echo "[^] Uploading docker image"
|
||||||
# docker login --username=nikisweeting
|
# docker login --username=nikisweeting
|
||||||
|
|
2
docs
2
docs
|
@ -1 +1 @@
|
||||||
Subproject commit 798e00a3a8f6a1633ca64cb0de530c5785dc2ccd
|
Subproject commit d5071d92367a91bb585abb5da7c65ebc61d0d7b0
|
Loading…
Add table
Add a link
Reference in a new issue