Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
micktwomey committed Sep 28, 2022
1 parent 56da11c commit e3b4ed3
Show file tree
Hide file tree
Showing 6 changed files with 411 additions and 417 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
max-parallel: 8
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11.0-rc.2"]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,7 +24,8 @@ jobs:
- name: Install nox
run: python -m pip install --upgrade nox
- name: nox test
run: nox --python ${{ matrix.python-version }} --session test
# Little hack to detect major.minor version, matrix version not always compatible with nox expectation
run: nox --python $(python -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') --session test

lint:
runs-on: ubuntu-latest
Expand All @@ -33,7 +34,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.10"
- name: Install nox
run: python -m pip install --upgrade nox
- name: nox lint
Expand All @@ -46,7 +47,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.10"
- name: Install nox
run: python -m pip install --upgrade nox
- name: nox docs
Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python 3.9.6 3.10.0 3.8.7 3.7.9 3.6.12 pypy3.7-7.3.7
python 3.10.4 3.11.0rc2 3.9.12 3.8.13 3.7.13 3.6.15 pypy3.9-7.3.9
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ Tested against:
- Python 3.8
- Python 3.9
- Python 3.10
- Python 3.11
- PyPy 3

Python 3 versions < 3.6 are untested but should work.
Expand All @@ -115,7 +116,11 @@ Changes

unreleased
----------
* Add `is_iso8601` function for validating that a string matches an ISO 8601 format

1.1.0
-----
* Add `is_iso8601` function for validating that a string matches an ISO 8601 format (thanks to David Baumgold (https://github.com/singingwolfboy) for https://github.com/micktwomey/pyiso8601/pull/21)
* Add Python 3.11 to the test mix

1.0.2
-----
Expand Down
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def docs(session: nox.Session):
session.run("sphinx-build", "docs", "docs/_build")


@nox.session(python=["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"], reuse_venv=True)
@nox.session(
python=["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"], reuse_venv=True
)
def test(session: nox.Session):
session.install(".")
session.install("pytest", "hypothesis", "pytz")
Expand Down
Loading

0 comments on commit e3b4ed3

Please sign in to comment.