Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Commit

Permalink
Merge pull request #34 from d33bs/main
Browse files Browse the repository at this point in the history
Change Literal to Python < 3.8 Compatible typing_extensions Version
  • Loading branch information
d33bs authored Jan 20, 2022
2 parents fcfcef3 + 9c2e793 commit ab9efae
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-lint-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
python-version: [3.7, 3.8]

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ pylint
pysftp
pytest
sqlalchemy
typing_extensions
yamllint
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# This call to setup() does all the work
setuptools.setup(
name="cupyopt",
version="0.15.11.1",
version="0.15.11.2",
description="CU Python Opinionated Prefect Tasks",
long_description=README,
long_description_content_type="text/x-rst",
Expand Down
3 changes: 2 additions & 1 deletion src/cupyopt/objectstore_tasks.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
""" object store functions """

import logging
from typing import Any, Literal
from typing import Any
from typing_extensions import Literal

import pandas as pd
import urllib3
Expand Down

0 comments on commit ab9efae

Please sign in to comment.