Skip to content

Commit

Permalink
Starlette >=0.36 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
coady committed Jan 25, 2024
1 parent 6a926b0 commit e341d1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
## Unreleased
### Changed
* Pyarrow >=15 required

### Fixed
* Strawberry >=0.212 compatible
* Starlette >=0.36 compatible

## [1.4](https://pypi.org/project/graphique/1.4/) - 2023-11-05
### Changed
Expand Down
2 changes: 1 addition & 1 deletion graphique/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from graphique.inputs import Expression
from graphique import GraphQL

config = Config('.env')
config = Config('.env' if Path('.env').is_file() else None)
PARQUET_PATH = Path(config('PARQUET_PATH')).resolve()
FEDERATED = config('FEDERATED', default='')
DEBUG = config('DEBUG', cast=bool, default=False)
Expand Down

0 comments on commit e341d1b

Please sign in to comment.