Skip to content

Commit

Permalink
Update dependencies and formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-fleming committed Mar 6, 2024
1 parent 1836ef8 commit fd21686
Show file tree
Hide file tree
Showing 7 changed files with 900 additions and 319 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.4] - 2024-03-6
### Fixed
- Fix reading from shared drives

## [0.0.3] - 2022-08-12
### Fixed
- Fix writing to shared drives by using the appropriate non-deprecated API parameter
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ twine = "*"
python_version = "3.9"

[pipenv]
allow_prereleases = true
allow_prereleases = false
1,206 changes: 891 additions & 315 deletions Pipfile.lock

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tool.black]
line-length = 99
skip-numeric-underscore-normalization = "True"
target_version = ['py37']
target_version = ['py39']
include = '\.pyi?$'
exclude = '(\.mypy_cache)'

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))

VERSION = "0.0.3"
VERSION = "0.0.4"

REPO_ROOT = pathlib.Path(__file__).parent

Expand Down
1 change: 1 addition & 0 deletions src/tentaclio_gdrive/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This package implements the tentaclio gdrive client """

from tentaclio import * # noqa

from .clients.google_drive_client import GoogleDriveFSClient
Expand Down
1 change: 1 addition & 0 deletions src/tentaclio_gdrive/clients/google_drive_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Google drive client."""

import abc
import functools
import json
Expand Down

0 comments on commit fd21686

Please sign in to comment.