Skip to content

Commit 3f46b5a

Browse files
committed
Update project dependencies
Require Sphinx >= 1.8.0 Add a requirements.lock file.
1 parent 8dffb0c commit 3f46b5a

File tree

5 files changed

+79
-27
lines changed

5 files changed

+79
-27
lines changed

Pipfile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@ name = "pypi"
88

99
[dev-packages]
1010
versioneer = "*"
11-
sphinx = "*"
11+
sphinx = ">=1.8.0"
1212
sphinx-rtd-theme = "*"
1313
pytest = "*"
1414
flake8 = "*"
1515
twine = "*"
1616
ipython = "*"
17-
18-
[pipenv]
19-
allow_prereleases = true

Pipfile.lock

Lines changed: 21 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements.lock

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
alabaster==0.7.11
2+
appnope==0.1.0
3+
atomicwrites==1.2.1
4+
attrs==18.2.0
5+
Babel==2.6.0
6+
backcall==0.1.0
7+
certifi==2018.8.24
8+
chardet==3.0.4
9+
decorator==4.3.0
10+
docutils==0.14
11+
flake8==3.5.0
12+
future==0.16.0
13+
idna==2.7
14+
imagesize==1.1.0
15+
ipython==6.5.0
16+
ipython-genutils==0.2.0
17+
jedi==0.12.1
18+
Jinja2==2.10
19+
MarkupSafe==1.0
20+
mccabe==0.6.1
21+
more-itertools==4.3.0
22+
packaging==17.1
23+
parso==0.3.1
24+
pexpect==4.6.0
25+
pickleshare==0.7.4
26+
pkginfo==1.4.2
27+
pluggy==0.7.1
28+
prompt-toolkit==1.0.15
29+
ptyprocess==0.6.0
30+
py==1.6.0
31+
pycodestyle==2.3.1
32+
pyflakes==1.6.0
33+
Pygments==2.2.0
34+
pyparsing==2.2.0
35+
pytest==3.8.0
36+
pytz==2018.5
37+
requests==2.19.1
38+
requests-toolbelt==0.8.0
39+
simplegeneric==0.8.1
40+
six==1.11.0
41+
snowballstemmer==1.2.1
42+
Sphinx==1.8.0
43+
sphinx-rtd-theme==0.4.1
44+
sphinxcontrib-websupport==1.1.0
45+
tqdm==4.26.0
46+
traitlets==4.3.2
47+
twine==1.11.0
48+
urllib3==1.23
49+
versioneer==0.18
50+
wcwidth==0.1.7
51+
-e git+https://github.com/CiscoDevNet/webexteamssdk.git@2073d4886027ce1c51b1f1680061e5c899ed2780#egg=webexteamssdk

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
versioneer
2-
sphinx
2+
Sphinx>=1.8.0
33
sphinx-rtd-theme
44
pytest
55
flake8

script/update

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ cd "$(dirname "$0")/.."
1010

1111

1212
echo "==> Updating project dependencies"
13+
1314
echo "Update installed packages"
1415
pipenv update --dev
15-
#echo "Freeze package requirements"
16-
#pipenv run pip freeze > requirements.txt
16+
17+
echo "Freeze package requirements"
18+
pipenv run pip freeze > requirements.lock
19+
1720
echo "Update versioneer script(s)"
1821
rm versioneer.py
1922
pipenv run versioneer install

0 commit comments

Comments
 (0)