-
Notifications
You must be signed in to change notification settings - Fork 490
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add honduras tests * add honduras tests * Add tests for many edge cases * Add tests for many edge cases * remove duplicate function * v.0.15 beta init * Typechecking (#661) * typechecking HolidayBase, holidays.utils, miscellaneous typechecking note: coverage to be extended to other parts of the project code * Update Ukraine holidays. - Add Day of Ukrainian Statehood holiday. - Edit Victory Day name. - Fix formatting. - Update tests for Ukraine holidays. - Switch to <= and >= for consistency. - Rename Orthodox Easter. * CHANGES sync * Add Day after Thanksgiving to US - PA holidays (#675) * CHANGES sync * CHANGES sync, pre-commit reviews * test_ukraine pre-commit fix * Bump actions/setup-python from 3.1.0 to 4.1.0 (#682) * Bump pre-commit/action from 2.0.3 to 3.0.0 (#672) * removed py36 from toml target-version array * Add Cuba (#678) authored-by: bthompson <[email protected]> * CHANGES sync * Make Colombian holidays preserve historical observation (#676) Authored-by: bthompson <[email protected]> * Make Venezuela holidays preserve historical observation (#677) Authored-by: bthompson <[email protected]> * CHANGES sync * black fixes * removed outdated deprecation warnings * Drop support for PortugalExt * Ensure Canada Christmas observed falls after 25 and not before - new version #579 * CHANGES sync * README sync (support for Cuba) * Drop support for UK subdivisions as countries (England, Scotland..) (dr-p) Drop support for IsleOfMan as UK subdivision (dr-p) * Added support for Python 3.11, improved README badges * Fixed CD/CI setup.cfg typo * Added py3.11 to toml config * Removed py3.11 from setup.cfg due to failing pre-commit checks * Bump pypa/gh-action-pypi-publish from 1.5.0 to 1.5.1 #686 * Doc example fix (#685) * added pentecost monday for province of bolzano source: https://it.wikipedia.org/wiki/Pentecoste * Whitsun Monday - province of Bolzano - IT (#689) * Bump actions/setup-python to 4.2.0 (#688) * v.0.15 Co-authored-by: Akos <[email protected]> Co-authored-by: Akos Furton <[email protected]> Co-authored-by: Maurizio Montel <[email protected]> Co-authored-by: David Hotham <[email protected]> Co-authored-by: Kate <[email protected]> Co-authored-by: Ark <[email protected]> Co-authored-by: Bailey Thompson <[email protected]> Co-authored-by: g-gg <[email protected]>
- v0.67
- v0.66
- v0.65
- v0.64
- v0.63
- v0.62
- v0.61
- v0.60
- v0.59
- v0.58
- v0.57
- v0.56
- v0.55
- v0.54
- v0.53
- v0.52
- v0.51
- v0.50
- v0.49
- v0.48
- v0.47
- v0.46
- v0.45
- v0.44
- v0.43
- v0.42
- v0.41
- v0.40
- v0.39
- v0.38
- v0.37
- v0.36
- v0.35
- v0.34
- v.0.33
- v.0.32
- v.0.31
- v.0.30
- v.0.29
- v.0.28
- v.0.27.1
- v.0.27
- v.0.26
- v.0.25
- v.0.24
- v.0.23
- v.0.22
- v.0.21.13
- v.0.21
- v.0.20
- v.0.19
- v.0.18
- v.0.17.2
- v.0.17.1
- v.0.17
- v.0.16
- v.0.15
1 parent
1223874
commit d3dc700
Showing
67 changed files
with
1,739 additions
and
593 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,9 +12,9 @@ jobs: | |
- name: Check out repo | ||
uses: actions/checkout@v3 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3.1.0 | ||
uses: actions/setup-python@v4.2.0 | ||
- name: Run pre-commit | ||
uses: pre-commit/action@v2.0.3 | ||
uses: pre-commit/action@v3.0.0 | ||
|
||
test: | ||
name: "Test: python=${{ matrix.python-version }} on ${{ matrix.os }}" | ||
|
@@ -28,7 +28,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v3.1.0 | ||
uses: actions/setup-python@v4.2.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: pip | ||
|
@@ -68,7 +68,7 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v3.1.0 | ||
uses: actions/setup-python@v4.2.0 | ||
with: | ||
python-version: "3.10" | ||
- name: Install dependencies | ||
|
@@ -80,7 +80,7 @@ jobs: | |
python setup.py sdist bdist_wheel | ||
- name: Publish package | ||
uses: pypa/[email protected].0 | ||
uses: pypa/[email protected].1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} |
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
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 |
---|---|---|
|
@@ -33,4 +33,4 @@ | |
list_supported_financial, | ||
) | ||
|
||
__version__ = "0.14.2" | ||
__version__ = "0.15" |
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
Oops, something went wrong.