elements 3.9.2__tar.gz → 3.9.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. {elements-3.9.2/elements.egg-info → elements-3.9.3}/PKG-INFO +1 -1
  2. {elements-3.9.2 → elements-3.9.3}/elements/__init__.py +1 -1
  3. {elements-3.9.2 → elements-3.9.3}/elements/path.py +2 -2
  4. {elements-3.9.2 → elements-3.9.3/elements.egg-info}/PKG-INFO +1 -1
  5. {elements-3.9.2 → elements-3.9.3}/LICENSE +0 -0
  6. {elements-3.9.2 → elements-3.9.3}/MANIFEST.in +0 -0
  7. {elements-3.9.2 → elements-3.9.3}/README.md +0 -0
  8. {elements-3.9.2 → elements-3.9.3}/elements/agg.py +0 -0
  9. {elements-3.9.2 → elements-3.9.3}/elements/checkpoint.py +0 -0
  10. {elements-3.9.2 → elements-3.9.3}/elements/config.py +0 -0
  11. {elements-3.9.2 → elements-3.9.3}/elements/counter.py +0 -0
  12. {elements-3.9.2 → elements-3.9.3}/elements/flags.py +0 -0
  13. {elements-3.9.2 → elements-3.9.3}/elements/fps.py +0 -0
  14. {elements-3.9.2 → elements-3.9.3}/elements/logger.py +0 -0
  15. {elements-3.9.2 → elements-3.9.3}/elements/plotting.py +0 -0
  16. {elements-3.9.2 → elements-3.9.3}/elements/printing.py +0 -0
  17. {elements-3.9.2 → elements-3.9.3}/elements/rwlock.py +0 -0
  18. {elements-3.9.2 → elements-3.9.3}/elements/space.py +0 -0
  19. {elements-3.9.2 → elements-3.9.3}/elements/timer.py +0 -0
  20. {elements-3.9.2 → elements-3.9.3}/elements/tree.py +0 -0
  21. {elements-3.9.2 → elements-3.9.3}/elements/usage.py +0 -0
  22. {elements-3.9.2 → elements-3.9.3}/elements/utils.py +0 -0
  23. {elements-3.9.2 → elements-3.9.3}/elements/uuid.py +0 -0
  24. {elements-3.9.2 → elements-3.9.3}/elements/when.py +0 -0
  25. {elements-3.9.2 → elements-3.9.3}/elements.egg-info/SOURCES.txt +0 -0
  26. {elements-3.9.2 → elements-3.9.3}/elements.egg-info/dependency_links.txt +0 -0
  27. {elements-3.9.2 → elements-3.9.3}/elements.egg-info/requires.txt +0 -0
  28. {elements-3.9.2 → elements-3.9.3}/elements.egg-info/top_level.txt +0 -0
  29. {elements-3.9.2 → elements-3.9.3}/requirements-optional.txt +0 -0
  30. {elements-3.9.2 → elements-3.9.3}/requirements.txt +0 -0
  31. {elements-3.9.2 → elements-3.9.3}/setup.cfg +0 -0
  32. {elements-3.9.2 → elements-3.9.3}/setup.py +0 -0
  33. {elements-3.9.2 → elements-3.9.3}/tests/test_basics.py +0 -0
  34. {elements-3.9.2 → elements-3.9.3}/tests/test_checkpoint.py +0 -0
  35. {elements-3.9.2 → elements-3.9.3}/tests/test_flags.py +0 -0
  36. {elements-3.9.2 → elements-3.9.3}/tests/test_path.py +0 -0
  37. {elements-3.9.2 → elements-3.9.3}/tests/test_tree.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: elements
3
- Version: 3.9.2
3
+ Version: 3.9.3
4
4
  Summary: Building blocks for productive research.
5
5
  Home-page: http://github.com/danijar/elements
6
6
  Classifier: Intended Audience :: Science/Research
@@ -1,4 +1,4 @@
1
- __version__ = '3.9.2'
1
+ __version__ = '3.9.3'
2
2
 
3
3
  from .agg import Agg
4
4
  from .checkpoint import Checkpoint, Saveable
@@ -282,9 +282,9 @@ class GCSPath(Path):
282
282
  def open(self, mode='r'):
283
283
  assert self.blob, 'is a directory'
284
284
  if 'w' in mode:
285
- return self.blob.open(mode, chunk_size=1024 * 1024, ignore_flush=True)
285
+ return self.blob.open(mode, ignore_flush=True)
286
286
  else:
287
- return self.blob.open(mode, chunk_size=1024 * 1024)
287
+ return self.blob.open(mode)
288
288
 
289
289
  def read(self, mode='r'):
290
290
  assert self.blob, 'is a directory'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: elements
3
- Version: 3.9.2
3
+ Version: 3.9.3
4
4
  Summary: Building blocks for productive research.
5
5
  Home-page: http://github.com/danijar/elements
6
6
  Classifier: Intended Audience :: Science/Research
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes