Skip to content

Commit 35a72a5

Browse files
authored
Merge pull request #29 from mnbf9rca/chore/update-deps
Loosen dependency version restrictions and remove support for PY3.7
2 parents 74dbb20 + 7ee1460 commit 35a72a5

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ 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:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919
- name: Install dependencies

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>=0.21.0
2+
cryptography>=41.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>=0.21.0',
43+
'cryptography>=41.0.0'
4444
],
4545
)

0 commit comments

Comments
 (0)