Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
# pycharm
.idea/
.idea
.pytest_cache/

# python setuptools
build/
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
12 changes: 12 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,18 @@ API Reference
api/index
api/coverage

FAQ
===

- My RAM consumption rises when processing a large amount of files.
This problem is caused by a python-cybox_ caching mechanism that is enabled
by default. To prevent this issue from happening use the
``cybox.utils.caches.cache_clear()`` method in your code/script to release
the cached resources as appropriate. Refer to the ``cybox`` documentation
for more details.

.. _python-cybox: http://cybox.readthedocs.io/

Contributing
============
If a bug is found, a feature is missing, or something just isn't behaving the way you'd expect it to, please submit an issue to our `tracker`_. If you'd like to contribute code to our repository, you can do so by issuing a `pull request`_ and we will work with you to try and integrate that code into our repository.
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33, py34, py35, py36, lxml23, no-maec
envlist = py27, py34, py35, py36, lxml23, no-maec

[testenv]
commands =
Expand Down Expand Up @@ -33,7 +33,6 @@ deps =
[travis]
python =
2.7: py27, docs, lxml23, no-maec
3.3: py33, no-maec
3.4: py34, no-maec
3.5: py35, no-maec
3.6: py36, no-maec