clockwork 0.3.3__tar.gz → 0.3.4__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.3
3
+ Version: 0.3.4
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.3'
11
+ __version__ = '0.3.4'
12
12
  __author__ = 'Zachary Einck <zacharyeinck@gmail.com>'
@@ -888,8 +888,8 @@ class Timestamp(object):
888
888
  qe_cls = cls._get_quarter_end_cls()
889
889
  parsed = qe_cls.parse_label(arg)
890
890
  if parsed is None: return
891
- year, qtr = parsed
892
- qe = qe_cls(year=year, qtr=qtr, offset=offset)
891
+ year, quarter = parsed
892
+ qe = qe_cls(year=year, quarter=quarter, offset=offset)
893
893
  return qe.dt
894
894
 
895
895
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "clockwork"
3
- version = "0.3.3"
3
+ version = "0.3.4"
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