Skip to content

Commit f5e23ed

Browse files
iampellelrjballsnyk-bot
authored
Release 4.0.4 (#165)
* Documentation Build Fix (#164) * Added readthedocs config yaml file * Updated broken paths in docs * fix: requirements.txt to reduce vulnerabilities (#163) The following vulnerabilities are fixed by pinning transitive dependencies: - https://snyk.io/vuln/SNYK-PYTHON-TORNADO-5537286 * - Update version and history --------- Co-authored-by: lrjball <[email protected]> Co-authored-by: Snyk bot <[email protected]>
1 parent a13317a commit f5e23ed

File tree

6 files changed

+56
-6
lines changed

6 files changed

+56
-6
lines changed

.readthedocs.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Read the Docs configuration file for Sphinx projects
2+
3+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+
6+
# Required
7+
8+
version: 2
9+
10+
11+
# Set the OS, Python version and other tools you might need
12+
13+
build:
14+
15+
os: ubuntu-22.04
16+
17+
tools:
18+
19+
python: "3.11"
20+
21+
22+
# Build documentation in the "docs/" directory with Sphinx
23+
sphinx:
24+
25+
configuration: docs/conf.py
26+
27+
# Optionally build your docs in additional formats such as PDF and ePub
28+
formats:
29+
- pdf
30+
- epub
31+
32+
33+
# Optional but recommended, declare the Python requirements required
34+
35+
# to build your documentation
36+
37+
# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
38+
39+
python:
40+
41+
install:
42+
43+
- requirements: requirements_dev.txt

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
4.0.4 (2023-08-23)
6+
------------------
7+
8+
* Documentation build fix
9+
* Pin tornado requirement to reduce vulnerability
10+
511
4.0.3 (2023-04-21)
612
------------------
713

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ This project adheres to the `Open Code of Conduct <https://github.com/spotify/co
7777
Contributing
7878
------------
7979

80-
`See the contributing docs <CONTRIBUTING.rst>`_.
80+
`See the contributing docs <https://github.com/spotify/chartify/blob/master/CONTRIBUTING.rst>`_.

chartify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
__author__ = """Chris Halpert"""
2525
__email__ = "[email protected]"
26-
__version__ = "4.0.3"
26+
__version__ = "4.0.4"
2727

2828
_IPYTHON_INSTANCE = False
2929

docs/installation.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ You can either clone the public repository:
3232

3333
.. code-block:: console
3434
35-
$ git clone git://github.com/cphalpert/chartify
35+
$ git clone git://github.com/spotify/chartify
3636
3737
Or download the `tarball`_:
3838

3939
.. code-block:: console
4040
41-
$ curl -OL https://github.com/cphalpert/chartify/tarball/master
41+
$ curl -OL https://github.com/spotify/chartify/tarball/master
4242
4343
Once you have a copy of the source, you can install it with:
4444

@@ -47,5 +47,5 @@ Once you have a copy of the source, you can install it with:
4747
$ python setup.py install
4848
4949
50-
.. _Github repo: https://github.com/cphalpert/chartify
51-
.. _tarball: https://github.com/cphalpert/chartify/tarball/master
50+
.. _Github repo: https://github.com/spotify/chartify
51+
.. _tarball: https://github.com/spotify/chartify/tarball/master

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ ipython>=7.17.0
1010
pyyaml>=6.0.0
1111
Jinja2>=3.1.0
1212
jupyter-bokeh>=3.0.7
13+
tornado>=6.3.2 # not directly required, pinned by Snyk to avoid a vulnerability

0 commit comments

Comments
 (0)