Skip to content

Commit

Permalink
QOL improvement to the core (#706)
Browse files Browse the repository at this point in the history
# Description

What - Added pydantic[dotenv] dependency & .python-version file

## Type of change

- [X] Non-breaking change (fix of existing functionality that will not
change current behavior)
  • Loading branch information
yairsimantov20 authored Jun 13, 2024
1 parent 9c899de commit 5e2147d
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 52 deletions.
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

<!-- towncrier release notes start -->

## 0.7.0 (2024-06-13)


### Improvements

- Added pydantic's dotenv extra to the core dependencies for reading .env files on the integration startup
- Added .python-version to the repository for easier setup with pyenv install


## 0.6.0 (2024-06-10)


Expand Down
104 changes: 54 additions & 50 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "port-ocean"
version = "0.6.0"
version = "0.7.0"
description = "Port Ocean is a CLI tool for managing your Port projects."
readme = "README.md"
homepage = "https://app.getport.io"
Expand Down Expand Up @@ -36,7 +36,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry.dependencies]
python = "^3.11"
pydantic = "^1.10.8"
pydantic = {version = "^1.10.8", extras = ["dotenv"]}
loguru = "^0.7.0"
pyyaml = "^6.0"
werkzeug = ">=2.3.4,<4.0.0"
Expand Down

0 comments on commit 5e2147d

Please sign in to comment.