Skip to content

Commit

Permalink
Falling back to hatchling 1.25
Browse files Browse the repository at this point in the history
  • Loading branch information
chdemko committed Nov 10, 2024
1 parent e5607cc commit a2d3ec6
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch hatchling==1.25.0
run: |
pipx install --preinstall hatchling==1.25.0 hatch
pipx install hatch
- name: Install dependencies
run: |
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
Expand All @@ -46,7 +48,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch hatchling==1.25.0
run: |
pipx install --preinstall hatchling==1.25.0 hatch
pipx install hatch
- name: Install dependencies
run: |
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
Expand All @@ -69,7 +73,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch hatchling==1.25.0
run: |
pipx install --preinstall hatchling==1.25.0 hatch
pipx install hatch
- name: Install dependencies
run: |
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
Expand All @@ -95,7 +101,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch hatchling==1.25.0
run: |
pipx install --preinstall hatchling==1.25.0 hatch
pipx install hatch
- name: Install dependencies
run: |
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch hatchling==1.25.0
run: |
pipx install --preinstall hatchling==1.25.0 hatch
pipx install hatch
- name: Build and publish
env:
HATCH_INDEX_USER: ${{ secrets.PYPI_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "A pandoc filter for adding icons on specific elements"
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = "BSD-3-Clause"
license-files = ["LICENSE"]
license-files = {path = ["LICENSE"]}
authors = [{name = "Christophe Demko", email = "[email protected]"}]
maintainers = [{name = "Christophe Demko", email = "[email protected]"}]
keywords = ["pandoc", "filters", "latex", "tip", "Font-Awesome", "icon"]
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a2d3ec6

Please sign in to comment.