Skip to content

Commit

Permalink
Bump to Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
dopplershift committed Oct 27, 2023
1 parent e2a9fec commit 104222a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.11

- name: Install tools
run: python -m pip install awscli
Expand Down
1 change: 1 addition & 0 deletions code/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ def save_token(token):
auto_refresh_kwargs={'client_id': ASANA_CLIENT_ID, 'client_secret': ASANA_SECRET_ID},
token_updater=save_token, redirect_uri='urn:ietf:wg:oauth:2.0:oob')
client.headers={'asana-enable': 'string_ids,new_sections,new_user_task_lists,new_project_templates'}
client.headers={'asana-disable': 'new_goal_memberships'}
return client

_IssueInfo = namedtuple('IssueInfo', ['number', 'organization', 'repository',
Expand Down
6 changes: 3 additions & 3 deletions template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Resources:
Tags:
Project: AsanaBot
Group: Python
Runtime: python3.9
Runtime: python3.11
MemorySize: 128
Handler: githubhook.enqueue_event
CodeUri: code/githubhook.py
Expand Down Expand Up @@ -43,7 +43,7 @@ Resources:
Tags:
Project: AsanaBot
Group: Python
Runtime: python3.9
Runtime: python3.11
MemorySize: 128
Handler: sync.process_payload
CodeUri: _build/
Expand All @@ -67,7 +67,7 @@ Resources:
Tags:
Project: AsanaBot
Group: Python
Runtime: python3.9
Runtime: python3.11
MemorySize: 128
Handler: stackoverflow.check_stack_overflow
CodeUri: _build/
Expand Down

0 comments on commit 104222a

Please sign in to comment.