Skip to content

Commit

Permalink
Merge pull request #64 from dbatten5/async-strict
Browse files Browse the repository at this point in the history
Convert to async `load_source`/`load_sources`
  • Loading branch information
dbatten5 authored Dec 30, 2021
2 parents 3c7dedf + c4b4fec commit abb8d2a
Show file tree
Hide file tree
Showing 44 changed files with 25,292 additions and 5,734 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ jobs:
- { python-version: 3.9, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.8, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.7, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.6, os: ubuntu-latest, session: "mypy" }
- { python-version: 3.9, os: ubuntu-latest, session: "tests" }
- { python-version: 3.8, os: ubuntu-latest, session: "tests" }
- { python-version: 3.7, os: ubuntu-latest, session: "tests" }
- { python-version: 3.6, os: ubuntu-latest, session: "tests" }
- { python-version: 3.9, os: windows-latest, session: "tests" }
- { python-version: 3.9, os: macos-latest, session: "tests" }
- { python-version: 3.9, os: ubuntu-latest, session: "typeguard" }
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ git clone [email protected]:<your username>/phylm.git
cd phylm
```

You'll need `python` 3.6, 3.7, 3.8 or 3.9 to run this package. You can follow
You'll need `python` 3.7, 3.8 or 3.9 to run this package. You can follow
the instructions [here](https://cookiecutter-hypermodern-python.readthedocs.io/en/2021.6.15/guide.html#getting-python)
to install and use these versions.

Expand Down
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@


package = "phylm"
python_versions = ["3.9", "3.8", "3.7", "3.6"]
python_versions = ["3.9", "3.8", "3.7"]
nox.needs_version = ">= 2021.6.6"
nox.options.sessions = (
"pre-commit",
Expand Down Expand Up @@ -127,7 +127,7 @@ def mypy(session: Session) -> None:
def tests(session: Session) -> None:
"""Run the test suite."""
session.install(".")
session.install("coverage[toml]", "pytest", "pygments", "vcrpy")
session.install("coverage[toml]", "pytest", "pygments", "vcrpy", "pytest-asyncio")
try:
session.run("coverage", "run", "--parallel", "-m", "pytest", *session.posargs)
finally:
Expand Down
Loading

0 comments on commit abb8d2a

Please sign in to comment.