Skip to content

Commit fd21686

Browse files
committed
Update dependencies and formatting
1 parent 1836ef8 commit fd21686

File tree

7 files changed

+900
-319
lines changed

7 files changed

+900
-319
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.4] - 2024-03-6
10+
### Fixed
11+
- Fix reading from shared drives
12+
913
## [0.0.3] - 2022-08-12
1014
### Fixed
1115
- Fix writing to shared drives by using the appropriate non-deprecated API parameter

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ twine = "*"
2323
python_version = "3.9"
2424

2525
[pipenv]
26-
allow_prereleases = true
26+
allow_prereleases = false

Pipfile.lock

Lines changed: 891 additions & 315 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[tool.black]
22
line-length = 99
3-
skip-numeric-underscore-normalization = "True"
4-
target_version = ['py37']
3+
target_version = ['py39']
54
include = '\.pyi?$'
65
exclude = '(\.mypy_cache)'
76

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# allow setup.py to be run from any path
1111
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
1212

13-
VERSION = "0.0.3"
13+
VERSION = "0.0.4"
1414

1515
REPO_ROOT = pathlib.Path(__file__).parent
1616

src/tentaclio_gdrive/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""This package implements the tentaclio gdrive client """
2+
23
from tentaclio import * # noqa
34

45
from .clients.google_drive_client import GoogleDriveFSClient

src/tentaclio_gdrive/clients/google_drive_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Google drive client."""
2+
23
import abc
34
import functools
45
import json

0 commit comments

Comments
 (0)