clockwork 0.3.0__tar.gz → 0.3.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: clockwork
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Toolkit for time-related operations including scheduling, logging, date manipulation, and more.
5
5
  Home-page: https://github.com/zteinck/clockwork
6
6
  License: MIT
@@ -8,5 +8,5 @@ from .utils import (
8
8
  date_format_to_regex,
9
9
  )
10
10
 
11
- __version__ = '0.3.0'
11
+ __version__ = '0.3.1'
12
12
  __author__ = 'Zachary Einck <zacharyeinck@gmail.com>'
@@ -482,6 +482,14 @@ class Timestamp(object):
482
482
  return getattr(self.dt, name)
483
483
 
484
484
 
485
+ def __copy__(self):
486
+ return self.copy()
487
+
488
+
489
+ def __deepcopy__(self, memo):
490
+ return self.copy()
491
+
492
+
485
493
  def __repr__(self):
486
494
  return str(self)
487
495
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "clockwork"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Toolkit for time-related operations including scheduling, logging, date manipulation, and more."
5
5
  authors = ["Zachary Einck <zacharyeinck@gmail.com>"]
6
6
  license = "MIT"
File without changes
File without changes
File without changes