-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use __slots__ to optimize memory usage (#10)
* Use `__slots__` to optimize memory usage * Version bump
- Loading branch information
1 parent
1125155
commit 237b881
Showing
3 changed files
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "mp-yearmonth" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
description = "A year-month datatype for Python." | ||
keywords = ["year", "month", "date", "calendar"] | ||
authors = ["Ramon Torres <[email protected]>"] | ||
|