Skip to content

Commit

Permalink
Merge pull request #20 from DahnJ/build/dj-no-py37-add-py310-py311
Browse files Browse the repository at this point in the history
Build: remove support for python 3.7, add 3.10 and 3.11
  • Loading branch information
DahnJ committed Mar 19, 2023
2 parents 1edad1c + 4d8a3fc commit 52a3111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
3 changes: 1 addition & 2 deletions build-conda.sh
Expand Up @@ -3,8 +3,7 @@

# Variables
pkg='h3pandas'
array=( 3.7 3.8 3.9 )
# array=( 3.6 3.7 3.8 3.9 )
array=( 3.8 3.9 3.10 3.11)

# Constants
MINICONDA=$HOME/miniconda3
Expand Down
6 changes: 1 addition & 5 deletions h3pandas/h3pandas.py
@@ -1,11 +1,7 @@
from typing import Union, Callable, Sequence, Any
import warnings

# Literal is not supported by Python <3.8
try:
from typing import Literal
except ImportError:
from typing_extensions import Literal
from typing import Literal

import numpy as np
import shapely
Expand Down

0 comments on commit 52a3111

Please sign in to comment.