Skip to content

Commit

Permalink
Revert "Avoid pyparsing 3.1.3 with Python 3.6. (#57)"
Browse files Browse the repository at this point in the history
This reverts commit 760186d.
  • Loading branch information
felixfontein committed Aug 25, 2024
1 parent 760186d commit 19f0423
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/nox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,6 @@ jobs:
- name: Setup nox - downgrade virtualenv
run: |
pipx inject --force nox 'virtualenv<20.22.0'
- name: Adjust pyproject.yoml
run: |
sed -i -e 's/requires = \["hatchling"\]/requires = ["hatchling", "pyparsing < 3.1.3"]/' pyproject.toml
cat pyproject.toml
- name: Set up nox environments
run: |
nox -v -e test -p 3.6 --install-only
Expand Down
2 changes: 0 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ def install(session: nox.Session, *args, editable=False, **kwargs):

@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"])
def test(session: nox.Session):
if session.python in ("3.6",):
install(session, "pyparsing < 3.1.3")
install(session, ".[test, coverage]", editable=True)
covfile = Path(session.create_tmp(), ".coverage")
more_args = []
Expand Down

0 comments on commit 19f0423

Please sign in to comment.