Skip to content

Commit

Permalink
Merge pull request #29 from bcorfman/gitignore
Browse files Browse the repository at this point in the history
.gitignore update for PDM
  • Loading branch information
bcorfman authored Aug 29, 2023
2 parents c0cdb0c + a07464b commit bc62cb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
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

0 comments on commit bc62cb2

Please sign in to comment.