Skip to content

Commit

Permalink
Merge pull request #1 from python-odin/development
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
timsavage authored Jun 27, 2022
2 parents ba58406 + 9e35acd commit bf857f3
Show file tree
Hide file tree
Showing 5 changed files with 103 additions and 176 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.idea
.cache
.nox
*.pyc
*.egg-info
requirements.txt
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
from nox.sessions import Session


@nox.session(python="3.8", reuse_venv=True)
@nox.session(python="3.10", reuse_venv=True)
def tests(session: Session):
# fmt: off
session.run(
"poetry", "export",
"--dev",
"--dev", "--without-hashes",
"-o", "requirements.txt",
external=True,
)
Expand Down
Loading

0 comments on commit bf857f3

Please sign in to comment.