Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

[1.3] convert ReadMe to RST #83

Merged
merged 1 commit into from
Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Deployment
on:
push:
tags:
- v1r3p[0-9]+
pull_request:

jobs:
Expand All @@ -18,7 +19,7 @@ jobs:
- name: Install dependencies
run: pip install build readme_renderer diraccfg
- name: Validate README for PyPI
run: python -m readme_renderer README.* -o /tmp/README.html
run: python -m readme_renderer README.rst -o /tmp/README.html
- name: Make PEP-440 style release on GitHub
id: PEP-440
if: github.event_name == 'push'
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/COMDIRAC/Interfaces/Utilities/DCommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def remove(self, section, option=None):
)
self.config.remove_option(section, option)
else:
self.config.remove_section(self, section)
self.config.remove_section(section)

return S_OK()

Expand Down