Skip to content

Commit 7bb4279

Browse files
authored
Merge pull request #10 from juliusfrost/minerl-0.4.0
MineRL 0.4.0 Update
2 parents 463bd16 + 463757f commit 7bb4279

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+5565
-1126
lines changed

.dockerignore

Lines changed: 241 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,241 @@
1+
# Project Specific
2+
data/
3+
logs/
4+
results/
5+
6+
# Created by https://www.toptal.com/developers/gitignore/api/pycharm+all,python
7+
# Edit at https://www.toptal.com/developers/gitignore?templates=pycharm+all,python
8+
9+
### PyCharm+all ###
10+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
11+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
12+
13+
# User-specific stuff
14+
.idea/**/workspace.xml
15+
.idea/**/tasks.xml
16+
.idea/**/usage.statistics.xml
17+
.idea/**/dictionaries
18+
.idea/**/shelf
19+
20+
# AWS User-specific
21+
.idea/**/aws.xml
22+
23+
# Generated files
24+
.idea/**/contentModel.xml
25+
26+
# Sensitive or high-churn files
27+
.idea/**/dataSources/
28+
.idea/**/dataSources.ids
29+
.idea/**/dataSources.local.xml
30+
.idea/**/sqlDataSources.xml
31+
.idea/**/dynamic.xml
32+
.idea/**/uiDesigner.xml
33+
.idea/**/dbnavigator.xml
34+
35+
# Gradle
36+
.idea/**/gradle.xml
37+
.idea/**/libraries
38+
39+
# Gradle and Maven with auto-import
40+
# When using Gradle or Maven with auto-import, you should exclude module files,
41+
# since they will be recreated, and may cause churn. Uncomment if using
42+
# auto-import.
43+
# .idea/artifacts
44+
# .idea/compiler.xml
45+
# .idea/jarRepositories.xml
46+
# .idea/modules.xml
47+
# .idea/*.iml
48+
# .idea/modules
49+
# *.iml
50+
# *.ipr
51+
52+
# CMake
53+
cmake-build-*/
54+
55+
# Mongo Explorer plugin
56+
.idea/**/mongoSettings.xml
57+
58+
# File-based project format
59+
*.iws
60+
61+
# IntelliJ
62+
out/
63+
64+
# mpeltonen/sbt-idea plugin
65+
.idea_modules/
66+
67+
# JIRA plugin
68+
atlassian-ide-plugin.xml
69+
70+
# Cursive Clojure plugin
71+
.idea/replstate.xml
72+
73+
# Crashlytics plugin (for Android Studio and IntelliJ)
74+
com_crashlytics_export_strings.xml
75+
crashlytics.properties
76+
crashlytics-build.properties
77+
fabric.properties
78+
79+
# Editor-based Rest Client
80+
.idea/httpRequests
81+
82+
# Android studio 3.1+ serialized cache file
83+
.idea/caches/build_file_checksums.ser
84+
85+
### PyCharm+all Patch ###
86+
# Ignores the whole .idea folder and all .iml files
87+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
88+
89+
.idea/
90+
91+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
92+
93+
*.iml
94+
modules.xml
95+
.idea/misc.xml
96+
*.ipr
97+
98+
# Sonarlint plugin
99+
.idea/sonarlint
100+
101+
### Python ###
102+
# Byte-compiled / optimized / DLL files
103+
__pycache__/
104+
*.py[cod]
105+
*$py.class
106+
107+
# C extensions
108+
*.so
109+
110+
# Distribution / packaging
111+
.Python
112+
build/
113+
develop-eggs/
114+
dist/
115+
downloads/
116+
eggs/
117+
.eggs/
118+
lib/
119+
lib64/
120+
parts/
121+
sdist/
122+
var/
123+
wheels/
124+
share/python-wheels/
125+
*.egg-info/
126+
.installed.cfg
127+
*.egg
128+
MANIFEST
129+
130+
# PyInstaller
131+
# Usually these files are written by a python script from a template
132+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
133+
*.manifest
134+
*.spec
135+
136+
# Installer logs
137+
pip-log.txt
138+
pip-delete-this-directory.txt
139+
140+
# Unit test / coverage reports
141+
htmlcov/
142+
.tox/
143+
.nox/
144+
.coverage
145+
.coverage.*
146+
.cache
147+
nosetests.xml
148+
coverage.xml
149+
*.cover
150+
*.py,cover
151+
.hypothesis/
152+
.pytest_cache/
153+
cover/
154+
155+
# Translations
156+
*.mo
157+
*.pot
158+
159+
# Django stuff:
160+
*.log
161+
local_settings.py
162+
db.sqlite3
163+
db.sqlite3-journal
164+
165+
# Flask stuff:
166+
instance/
167+
.webassets-cache
168+
169+
# Scrapy stuff:
170+
.scrapy
171+
172+
# Sphinx documentation
173+
docs/_build/
174+
175+
# PyBuilder
176+
.pybuilder/
177+
target/
178+
179+
# Jupyter Notebook
180+
.ipynb_checkpoints
181+
182+
# IPython
183+
profile_default/
184+
ipython_config.py
185+
186+
# pyenv
187+
# For a library or package, you might want to ignore these files since the code is
188+
# intended to run in multiple environments; otherwise, check them in:
189+
# .python-version
190+
191+
# pipenv
192+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
193+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
194+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
195+
# install all needed dependencies.
196+
#Pipfile.lock
197+
198+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
199+
__pypackages__/
200+
201+
# Celery stuff
202+
celerybeat-schedule
203+
celerybeat.pid
204+
205+
# SageMath parsed files
206+
*.sage.py
207+
208+
# Environments
209+
.env
210+
.venv
211+
env/
212+
venv/
213+
ENV/
214+
env.bak/
215+
venv.bak/
216+
217+
# Spyder project settings
218+
.spyderproject
219+
.spyproject
220+
221+
# Rope project settings
222+
.ropeproject
223+
224+
# mkdocs documentation
225+
/site
226+
227+
# mypy
228+
.mypy_cache/
229+
.dmypy.json
230+
dmypy.json
231+
232+
# Pyre type checker
233+
.pyre/
234+
235+
# pytype static type analyzer
236+
.pytype/
237+
238+
# Cython debug symbols
239+
cython_debug/
240+
241+
# End of https://www.toptal.com/developers/gitignore/api/pycharm+all,python

0 commit comments

Comments
 (0)