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

PyParsing improvements #119

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: "actions/checkout@v2"

- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v1"
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"

Expand All @@ -44,7 +44,7 @@ jobs:
uses: "actions/checkout@v2"

- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v1"
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"

Expand Down Expand Up @@ -79,14 +79,14 @@ jobs:
uses: "actions/checkout@v2"

- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v1"
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"

- name: "Install Imaginary and dependencies"
run: |
pip install --upgrade pip setuptools coverage
pip install .
pip install .[test]

- name: "Dump Environment Info"
uses: "twisted/[email protected]"
Expand Down
47 changes: 0 additions & 47 deletions .requirements-readthedocs.txt

This file was deleted.

2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# built documents.
#
# The short X.Y version.
from imaginary import __version__ as version
version = "0.0.5"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
],
extras_require={
"doc": ["sphinx>=1.2.2"],
"test": ["hypothesis"],
},
package_data={
"imaginary": ["resources/*", "resources/help/*"],
Expand Down
Loading