Skip to content

Commit bf857f3

Browse files
authored
Merge pull request #1 from python-odin/development
Release 0.5.0
2 parents ba58406 + 9e35acd commit bf857f3

File tree

5 files changed

+103
-176
lines changed

5 files changed

+103
-176
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: [3.8, 3.9, '3.10']
1313

1414
steps:
1515
- uses: actions/checkout@v2

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.idea
22
.cache
3+
.nox
34
*.pyc
45
*.egg-info
56
requirements.txt

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
from nox.sessions import Session
33

44

5-
@nox.session(python="3.8", reuse_venv=True)
5+
@nox.session(python="3.10", reuse_venv=True)
66
def tests(session: Session):
77
# fmt: off
88
session.run(
99
"poetry", "export",
10-
"--dev",
10+
"--dev", "--without-hashes",
1111
"-o", "requirements.txt",
1212
external=True,
1313
)

0 commit comments

Comments
 (0)