Skip to content

Commit 4e2ee8b

Browse files
authored
update deps, remove py37
1 parent 74dbb20 commit 4e2ee8b

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. See [standa
44

55
## [Unreleased](https://github.com/dotenv-org/python-dotenv-vault/compare/v0.6.4...master)
66

7+
## 0.7.0
8+
### Changed
9+
10+
- Update dependencies python-dotenv and cryptography
11+
- Remove support for Python 3.7
12+
13+
714
## 0.6.4
815

916
### Changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
python-dotenv~=0.21.0
2-
cryptography<42.0.0,>41.0.3
1+
python-dotenv~=1.1.1
2+
cryptography>=45.0.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def read_files(files):
3939
'dotenv-vault'
4040
],
4141
install_requires=[
42-
'python-dotenv~=0.21.0',
43-
'cryptography<42.0.0,>41.0.3'
42+
'python-dotenv~=1.1.1',
43+
'cryptography>=45.0.0'
4444
],
4545
)

0 commit comments

Comments
 (0)