Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

.gitignore update for PDM #29

Merged
merged 5 commits into from
Aug 29, 2023
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ mainframe.dist/
.vscode/
.idea/
.DS_Store
.pdm.toml
.pdm-python
raven.ini
*.pyc
pdm.lock
Expand Down
2 changes: 1 addition & 1 deletion parsing/creole.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def _text_repl(self, groups):
if groups.get('break') and self.cur.kind in ('paragraph', 'emphasis', 'strong', 'code'):
DocNode('break', self.cur, '')
self.text = None
_break_repl = _text_repl
# _break_repl = _text_repl

def _table_repl(self, groups):
row = groups.get('table', '|').strip()
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ authors = [
]
dependencies = [
"charset-normalizer>=2.1.1",
"pyparsing>=3.0.9",
"pyparsing>=3.1.1",
]
requires-python = ">=3.9"
license = {text = "MIT"}
[project.optional-dependencies]

[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
Expand Down