Skip to content

Commit

Permalink
Python 2 compat in setup.py (jupyter-server#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Silvester authored and GitHub Enterprise committed Aug 17, 2021
1 parent f665c8f commit afee28e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
"""
data_studio_jupyter_extensions setup
"""
from pathlib import Path

import setuptools
try:
from pathlib import Path
except ImportError:
setuptools.setup()

HERE = Path(__file__).parent.resolve()

Expand Down

0 comments on commit afee28e

Please sign in to comment.