Skip to content

Commit

Permalink
update pandoc and pip modules
Browse files Browse the repository at this point in the history
  • Loading branch information
marph91 committed Oct 18, 2024
1 parent b5305e7 commit 63bdd97
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# install only the really required modules before the pyinstaller build
run: |
pip install -r requirements/requirements-build.txt
python -c 'from pypandoc.pandoc_download import download_pandoc; download_pandoc(version="3.4")'
python -c 'from pypandoc.pandoc_download import download_pandoc; download_pandoc(version="3.5")'
- name: Build executables with pyinstaller
run: |
# store the latest tag in static file
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install pip dependencies
run: |
pip install -r requirements/requirements-dev.txt
python -c 'from pypandoc.pandoc_download import download_pandoc; download_pandoc(version="3.4")'
python -c 'from pypandoc.pandoc_download import download_pandoc; download_pandoc(version="3.5")'
- name: install optional system depencencies
run: sudo apt install -y asciidoctor
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements-build.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
-r requirements.txt
pyinstaller==6.10.0
pyinstaller==6.11.0
10 changes: 5 additions & 5 deletions requirements/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
-r requirements.txt
mypy==1.11.2
mypy==1.12.0
parameterized==0.9.0
pylint==3.2.7
pylint==3.3.1
requests==2.32.3
ruff==0.6.5
ruff==0.7.0
types-beautifulsoup4==4.12.0.20240907
types-Markdown==3.7.0.20240822
types-pyyaml==6.0.12
types-vobject==0.9.8.20240310
types-pyyaml==6.0.12.20240917
types-vobject==0.9.8.20241003
4 changes: 2 additions & 2 deletions requirements/requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
mkdocs-git-revision-date-localized-plugin==1.2.9
mkdocs-material==9.5.34
mkdocs-open-in-new-tab==1.0.5
mkdocs-material==9.5.41
mkdocs-open-in-new-tab==1.0.7
16 changes: 8 additions & 8 deletions requirements/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
beautifulsoup4==4.12.3
cryptography==43.0.1
cryptography==43.0.3
enlighten==1.12.4
markdown==3.7
platformdirs==4.3.3
puremagic==1.27
pypandoc==1.13
pyparsing==3.1.2
platformdirs==4.3.6
puremagic==1.28
pypandoc==1.14
pyparsing==3.2.0
python-frontmatter==1.1.0
pytodotxt==1.5.0
# pytodotxt==1.5.0
pyyaml==6.0.2
rich==13.8.1
rich==13.9.2
stage-left==0.2.2
vobject==0.9.7
vobject==0.9.8
2 changes: 1 addition & 1 deletion src/formats/joplin.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def convert_data(
resource_id_filename_map,
available_tags,
note_tag_id_map,
): # pylint: disable=too-many-arguments
): # pylint: disable=too-many-arguments,too-many-positional-arguments
for parent_id, note in parent_id_note_map:
# assign tags
assert note.original_id is not None
Expand Down
2 changes: 1 addition & 1 deletion src/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def __init__(self, progress_bars, config):
self.local_resource_folder = (
config.local_resource_folder
if config.local_resource_folder == Path(".")
else safe_path(config.local_resource_folder)
else Path(safe_path(config.local_resource_folder))
)
# reference id - path (new id)
self.note_id_map: dict[str, Path] = {}
Expand Down

0 comments on commit 63bdd97

Please sign in to comment.