Skip to content

Commit

Permalink
Merge pull request #151 from wimglenn/packaging
Browse files Browse the repository at this point in the history
modern packaging
  • Loading branch information
wimglenn authored Jun 17, 2023
2 parents b7feb75 + 523fc43 commit d290e1c
Show file tree
Hide file tree
Showing 8 changed files with 52 additions and 515 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
name: parse
on: [push]
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
run-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, pypy3]
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "pypy-3.9"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: python test_parse.py
run: |
python test_parse.py
python -m doctest README.rst
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Parse strings using a specification based on the Python format() syntax.
``parse()`` is the opposite of ``format()``

The module is set up to only export ``parse()``, ``search()``, ``findall()``,
and ``with_pattern()`` when ``import \*`` is used:
and ``with_pattern()`` when ``import *`` is used:

>>> from parse import *

Expand Down
Loading

0 comments on commit d290e1c

Please sign in to comment.