Skip to content
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

Switch to PyPI API token publishing #158

Merged
merged 3 commits into from
Mar 11, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
run: pip install poetry
- name: Upload to pypi.org
run: |
poetry publish --build -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASSWORD }}
poetry publish --build -u __token__ -p ${{ secrets.PYPI_APITOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyzoom"
version = "1.0.7"
version = "1.0.8"
description = "Python wrapper for Zoom Video API"
authors = ["MB <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion pyzoom/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ZoomMeetingSettings(MyZoomBase):
watermark: bool
use_pmi: bool
approval_type: Literal[0, 1, 2]
registration_type: Optional[Literal[1, 2, 3]]
registration_type: Optional[Literal[1, 2, 3]] = None
audio: Literal["voip", "telephony", "both"]
auto_recording: Literal["local", "cloud", "none"]
enforce_login: bool
Expand Down
Loading