Skip to content

Commit 5c2e4c8

Browse files
authored
Merge pull request #298 from roboflow/login-bugfix
bugfix: login breaks if ~/.config doesn't exist
2 parents 1a7bd66 + a5eb3f2 commit 5c2e4c8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

roboflow/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from roboflow.models import CLIPModel, GazeModel # noqa: F401
1616
from roboflow.util.general import write_line
1717

18-
__version__ = "1.1.36"
18+
__version__ = "1.1.37"
1919

2020

2121
def check_key(api_key, model, notebook, num_retries=0):
@@ -94,7 +94,7 @@ def login(workspace=None, force=False):
9494

9595
# make config directory if it doesn't exist
9696
if not os.path.exists(os.path.dirname(conf_location)):
97-
os.mkdir(os.path.dirname(conf_location))
97+
os.makedirs(os.path.dirname(conf_location))
9898

9999
r_login = {"workspaces": r_login}
100100
# set first workspace as default workspace

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
extras_require={
3232
"desktop": ["opencv-python==4.8.0.74"],
3333
"dev": [
34-
"mypy",
34+
"mypy<1.11.0",
3535
"responses",
3636
"ruff",
3737
"twine",

0 commit comments

Comments
 (0)