Skip to content

Release 1.1.1. #48

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

Merged
merged 3 commits into from
Aug 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/build_test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ jobs:
- run: poetry install
- run: poetry run task test

test-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.7"
- run: curl -sSL https://install.python-poetry.org | python3 -
- run: poetry install --only main
- run: poetry run python -c "import check_shapes"

test-versions:
runs-on: ubuntu-latest
strategy:
Expand All @@ -43,7 +54,7 @@ jobs:
- run: ./poetryenv poetryenvs/${{ matrix.framework }}_${{ matrix.version }} run task test

all-tests:
needs: [test-base, test-versions]
needs: [test-base, test-install, test-versions]
runs-on: ubuntu-latest
steps:
- run: echo ok
Expand Down
17 changes: 16 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This release contains contributions from:
<INSERT>, <NAME>, <HERE>, <USING>, <GITHUB>, <HANDLE>


# Release 1.1.1 (next upcoming release in progress)
# Release 1.1.2 (next upcoming release in progress)

<INSERT SMALL BLURB ABOUT RELEASE FOCUS AREA AND POTENTIAL TOOLCHAIN CHANGES>

Expand Down Expand Up @@ -66,6 +66,21 @@ This release contains contributions from:
<INSERT>, <NAME>, <HERE>, <USING>, <GITHUB>, <HANDLE>


# Release 1.1.1

Fix missing dependency in `1.1.0`.

## Bug Fixes and Other Changes

* Fix missing dependency on `dropstackframe`.

## Thanks to our Contributors

This release contains contributions from:

jesnie


# Release 1.1.0

Maintenance release. Mostly importantly adds support for Python 3.11, but also adds a couple of
Expand Down
2 changes: 1 addition & 1 deletion check_shapes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
install_tfp_integration()
install_torch_integration()

__version__ = "1.1.0"
__version__ = "1.1.1"

__all__ = [
"Dimension",
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/jax_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/jax_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/np_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/np_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/py_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/py_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/tf_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/tf_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/tfp_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/tfp_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/torch_max/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions poetryenvs/torch_min/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "check_shapes"
version = "1.1.0"
version = "1.1.1"
description = "A library for annotating and checking the shapes of tensors."
authors = [
"Jesper Nielsen <jespernielsen1982+check_shapes@gmail.com>",
Expand Down Expand Up @@ -32,14 +32,14 @@ classifiers = [
]

[tool.poetry.dependencies]
dropstackframe = ">=0.1.0"
lark = "^1.1.0"
python = "^3.7"

[tool.poetry.dev-dependencies]
Sphinx = "^5.2.2"
black = "20.8b1" # Pinned for backwards compatibility with the old stuff.
click = "<8.1.0" # Required by `black = "20.8b1"`.
dropstackframe = ">=0.1.0"
isort = "^5.10.0"
matplotlib = "^3.0.0"
mypy = ">0.920,!=0.982"
Expand Down
Loading