-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
92 changed files
with
1,755 additions
and
4,374 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
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 |
---|---|---|
|
@@ -32,14 +32,14 @@ jobs: | |
- name: Set Up Python ${{ matrix.python-version }} | ||
uses: actions/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: pip | ||
cache-dependency-path: requirements/dev.txt | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade 'coveralls>=3' pip | ||
python -m pip install --upgrade --requirement requirements/dev.txt | ||
python -m pip install --editable . | ||
python -m pip install -U pip wheel 'coveralls>=3' | ||
python -m pip install -U -r requirements/dev.txt | ||
python -m pip install -e . | ||
- name: Run Tests | ||
run: | | ||
make test | ||
|
@@ -58,7 +58,7 @@ jobs: | |
steps: | ||
- name: Finished | ||
run: | | ||
python -m pip install --upgrade 'coveralls>=3' pip | ||
pip3 install -U 'coveralls>=3' | ||
coveralls --finish --service=github | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -75,11 +75,11 @@ jobs: | |
python-version: '3.11' | ||
- name: Install Dependencies | ||
run: | | ||
python -m pip install --upgrade build pip | ||
pip install --upgrade . | ||
python -m pip install -U pip wheel | ||
pip install -U . | ||
- name: Build Distribution | ||
run: | | ||
make build | ||
python setup.py sdist bdist_wheel | ||
- name: Publish Package | ||
uses: pypa/[email protected] | ||
|
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,7 +1,9 @@ | ||
exclude tests/* | ||
include *.mo | ||
include *.py | ||
include *.po | ||
include *.rst | ||
include CHANGES | ||
include holidays/py.typed | ||
recursive-include docs * | ||
recursive-include holidays *.py | ||
recursive-include holidays/locale *.(mp)o | ||
recursive-include scripts/l10n *.py | ||
recursive-include tests *.py | ||
include LICENSE | ||
include scripts/l10n/msgfmt.py |
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 |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
from holidays.holiday_base import * | ||
from holidays.utils import * | ||
|
||
__version__ = "0.21.11" | ||
__version__ = "0.21" |
Oops, something went wrong.