Skip to content

Commit

Permalink
Publish 2022.1a1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Chui committed Apr 30, 2022
1 parent fbf759c commit bc2b284
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ jobs:
- name: tag
run: make tag

# - name: promote
# run: twine upload dist/*
# env:
# TWINE_USERNAME: __token__
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
- name: promote
run: twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
4 changes: 3 additions & 1 deletion laminar/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,9 @@ def schedule(self, *, execution: str, dependencies: Dict[str, Tuple[str, ...]])
"""

with contexts.Attributes(self.execution, id=execution):
self.configuration.scheduler.loop(flow=self, dependencies=dependencies, finished={"Parameters"})
self.configuration.scheduler.loop( # type: ignore
flow=self, dependencies=dependencies, finished={"Parameters"}
)

@classmethod
def register(
Expand Down
2 changes: 1 addition & 1 deletion laminar/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2022.1a0"
VERSION = "2022.1a1"

0 comments on commit bc2b284

Please sign in to comment.