-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #271 from rsheftel/dev
v4.2.1 to fix pyproject.toml build
- Loading branch information
Showing
6 changed files
with
35 additions
and
49 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 @@ | ||
[project] | ||
name = "pandas_market_calendars" | ||
version = "4.2.0" | ||
version = "4.2.1" | ||
authors = [ | ||
{ name="Ryan Sheftel", email="[email protected]" }, | ||
] | ||
|
@@ -35,11 +35,34 @@ requires = ["setuptools>=61.0", "wheel"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
py-modules = ["pandas_market_calendars"] | ||
packages = ["pandas_market_calendars"] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/rsheftel/pandas_market_calendars" | ||
"Source" = "https://github.com/rsheftel/pandas_market_calendars" | ||
"Documentation" = "https://pandas-market-calendars.readthedocs.io/en/latest/" | ||
"Changelog" = "https://pandas-market-calendars.readthedocs.io/en/latest/change_log.html" | ||
"Bug Tracker" = "https://github.com/rsheftel/pandas_market_calendars/issues" | ||
|
||
[tool.coverage.run] | ||
branch = true | ||
|
||
[tool.coverage.report] | ||
exclude_also = [ | ||
# Don't complain about missing debug-only code: | ||
"def __repr__", | ||
"if self\\.debug", | ||
|
||
# Don't complain if tests don't hit defensive assertion code: | ||
"raise AssertionError", | ||
"raise NotImplementedError", | ||
|
||
# Don't complain if non-runnable code isn't run: | ||
"if 0:", | ||
"if __name__ == .__main__.:", | ||
|
||
# Don't complain about abstract methods, they aren't run: | ||
"@(abc\\.)?abstractmethod", | ||
] | ||
|
||
ignore_errors = true |