Skip to content

Commit

Permalink
Removing external data source that no longer exists
Browse files Browse the repository at this point in the history
  • Loading branch information
cdgriffith committed Dec 24, 2019
1 parent 12bf52d commit ec09916
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 120,773 deletions.
14 changes: 5 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ If you have any issues please open a github issue with the error you are experie
Overview
========

Box 4 is out, check out the `changes and updates <docs/4.x_changes.rst>`_ !
Box 4 is out, check out the `changes and updates <docs/4.x_changes.rst>`_!

`Box` is designed to be an easy drop in transparently replacements for
dictionaries, thanks to Python's
Expand Down Expand Up @@ -468,7 +468,7 @@ Thoughts

"no thanks." - burnbabyburn

"Oh, that is cool. I am so using Box." - PythonBytes_


"I just prefer plain dictionaries." - falcolas

Expand All @@ -479,8 +479,9 @@ A huge thank you to everyone that has given features and feedback over the years

Check out everyone that has contributed_.

Also a special thanks to Python Software Foundation, and PSF-Trademarks Committee, for official approval to use the Python logo on the `Box` logo!
A special thanks to Python Software Foundation, and PSF-Trademarks Committee, for official approval to use the Python logo on the `Box` logo!

Also special shout-out to PythonBytes_, who featured Box on their podcast.

History
=======
Expand Down Expand Up @@ -524,11 +525,6 @@ License

MIT License, Copyright (c) 2017-2019 Chris Griffith. See LICENSE file.

Legal
=====

This project uses hearthstone card data taken from https://github.com/HearthSim/HearthstoneJSON available under the MIT License


.. |BoxImage| image:: https://raw.githubusercontent.com/cdgriffith/Box/master/box_logo.png
:target: https://github.com/cdgriffith/Box
Expand All @@ -543,7 +539,7 @@ This project uses hearthstone card data taken from https://github.com/HearthSim/
.. |License| image:: https://img.shields.io/pypi/l/python-box.svg
:target: https://pypi.python.org/pypi/python-box/

.. _PythonBytes: https://pythonbytes.fm/episodes/show/68/python-notebooks-galore
.. _PythonBytes: https://pythonbytes.fm/episodes/show/19/put-your-python-dictionaries-in-a-box-and-apparently-python-is-really-wanted
.. _contributed: AUTHORS.rst
.. _`Wrapt Documentation`: https://wrapt.readthedocs.io/en/latest
.. _reusables: https://github.com/cdgriffith/reusables#reusables
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@
shutil.copy(readme_file, "index.rst")

with open("index.rst", "r+") as index:
modified = index.read().replace("`changes and updates <docs/4.0_changes.md>`_", "`changes and updates below!")
modified = index.readlines()
index.seek(0)
index.write(modified)
index.write(''.join([x for x in modified if not x.startswith('Box 4 is out')]))


with open("index.rst", "a") as index, open(changes_file) as changes, open(changes_4_file) as change_4:
Expand Down
1 change: 0 additions & 1 deletion test/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@

data_json_file = os.path.join(test_root, "data", "json_file.json")
data_yaml_file = os.path.join(test_root, "data", "yaml_file.yaml")
data_hearthstone = os.path.join(test_root, "data", "hearthstone_cards.json")
tmp_json_file = os.path.join(test_root, "tmp", "tmp_json_file.json")
tmp_yaml_file = os.path.join(test_root, "tmp", "tmp_yaml_file.yaml")

Expand Down
Loading

0 comments on commit ec09916

Please sign in to comment.