Skip to content

Commit 4159388

Browse files
authored
Add support for python 3.13 and drop 3.8 (#551)
fixes #550
1 parent 2b8635b commit 4159388

File tree

5 files changed

+91
-73
lines changed

5 files changed

+91
-73
lines changed

.github/workflows/test.yml

+18-17
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,23 @@ jobs:
1212
matrix:
1313
os:
1414
- ubuntu-latest
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", pypy3.9, pypy3.10]
15+
python-version:
16+
["3.9", "3.10", "3.11", "3.12", "3.13", pypy3.9, pypy3.10]
1617

1718
steps:
18-
- uses: actions/checkout@v4
19-
20-
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v5
22-
with:
23-
python-version: ${{ matrix.python-version }}
24-
allow-prereleases: true
25-
26-
- name: Upgrade pip
27-
run: python -m pip install --upgrade pip
28-
29-
- name: Install dependencies
30-
run: pip install tox tox-gh-actions
31-
32-
- name: Test with tox
33-
run: tox
19+
- uses: actions/checkout@v4
20+
21+
- name: Set up Python ${{ matrix.python-version }}
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
allow-prereleases: true
26+
27+
- name: Upgrade pip
28+
run: python -m pip install --upgrade pip
29+
30+
- name: Install dependencies
31+
run: pip install tox tox-gh-actions
32+
33+
- name: Test with tox
34+
run: tox

CHANGELOG.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
66
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
9+
## [Unreleased]
10+
11+
- Drop support for Python 3.8
12+
- Add support for python 3.13
13+
- Enhance `dotenv run`, switch to `execvpe` for better resource management and signal handling ([#523]) by [@eekstunt]
14+
815
## [1.0.1] - 2024-01-23
916

1017
**Fixed**
1118

1219
* Gracefully handle code which has been imported from a zipfile ([#456] by [@samwyma])
13-
* Allow modules using load_dotenv to be reloaded when launched in a separate thread ([#497] by [@freddyaboulton])
20+
* Allow modules using `load_dotenv` to be reloaded when launched in a separate thread ([#497] by [@freddyaboulton])
1421
* Fix file not closed after deletion, handle error in the rewrite function ([#469] by [@Qwerty-133])
1522

1623
**Misc**
@@ -317,7 +324,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
317324

318325
## 0.5.1
319326

320-
- Fix find\_dotenv - it now start search from the file where this
327+
- Fix `find_dotenv` - it now start search from the file where this
321328
function is called from.
322329

323330
## 0.5.0
@@ -346,6 +353,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
346353
[#466]: https://github.com/theskumar/python-dotenv/issues/466
347354
[#454]: https://github.com/theskumar/python-dotenv/issues/454
348355
[#474]: https://github.com/theskumar/python-dotenv/issues/474
356+
[#523]: https://github.com/theskumar/python-dotenv/issues/523
349357

350358
[@alanjds]: https://github.com/alanjds
351359
[@altendky]: https://github.com/altendky
@@ -356,6 +364,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
356364
[@cjauvin]: https://github.com/cjauvin
357365
[@eaf]: https://github.com/eaf
358366
[@earlbread]: https://github.com/earlbread
367+
[@eekstunt]: https://github.com/eekstunt
359368
[@eggplants]: https://github.com/@eggplants
360369
[@ekohl]: https://github.com/ekohl
361370
[@elbehery95]: https://github.com/elbehery95

setup.cfg

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.0.1
33
commit = True
44
tag = True
55

@@ -24,14 +24,14 @@ relative_files = True
2424
source = dotenv
2525

2626
[coverage:paths]
27-
source =
27+
source =
2828
src/dotenv
2929
.tox/*/lib/python*/site-packages/dotenv
3030
.tox/pypy*/site-packages/dotenv
3131

3232
[coverage:report]
3333
show_missing = True
3434
include = */site-packages/dotenv/*
35-
exclude_lines =
35+
exclude_lines =
3636
if IS_TYPE_CHECKING:
3737
pragma: no cover

setup.py

+39-31
Original file line numberDiff line numberDiff line change
@@ -4,60 +4,68 @@
44
def read_files(files):
55
data = []
66
for file in files:
7-
with open(file, encoding='utf-8') as f:
7+
with open(file, encoding="utf-8") as f:
88
data.append(f.read())
99
return "\n".join(data)
1010

1111

12-
long_description = read_files(['README.md', 'CHANGELOG.md'])
12+
long_description = read_files(["README.md", "CHANGELOG.md"])
1313

1414
meta = {}
15-
with open('./src/dotenv/version.py', encoding='utf-8') as f:
15+
with open("./src/dotenv/version.py", encoding="utf-8") as f:
1616
exec(f.read(), meta)
1717

1818
setup(
1919
name="python-dotenv",
2020
description="Read key-value pairs from a .env file and set them as environment variables",
2121
long_description=long_description,
22-
long_description_content_type='text/markdown',
23-
version=meta['__version__'],
22+
long_description_content_type="text/markdown",
23+
version=meta["__version__"],
2424
author="Saurabh Kumar",
2525
author_email="[email protected]",
2626
url="https://github.com/theskumar/python-dotenv",
27-
keywords=['environment variables', 'deployments', 'settings', 'env', 'dotenv',
28-
'configurations', 'python'],
29-
packages=['dotenv'],
30-
package_dir={'': 'src'},
27+
keywords=[
28+
"environment variables",
29+
"deployments",
30+
"settings",
31+
"env",
32+
"dotenv",
33+
"configurations",
34+
"python",
35+
],
36+
packages=["dotenv"],
37+
package_dir={"": "src"},
3138
package_data={
32-
'dotenv': ['py.typed'],
39+
"dotenv": ["py.typed"],
3340
},
34-
python_requires=">=3.8",
41+
python_requires=">=3.9",
3542
extras_require={
36-
'cli': ['click>=5.0', ],
43+
"cli": [
44+
"click>=5.0",
45+
],
3746
},
3847
entry_points={
3948
"console_scripts": [
4049
"dotenv=dotenv.__main__:cli",
4150
],
4251
},
43-
license='BSD-3-Clause',
52+
license="BSD-3-Clause",
4453
classifiers=[
45-
'Development Status :: 5 - Production/Stable',
46-
'Programming Language :: Python',
47-
'Programming Language :: Python :: 3',
48-
'Programming Language :: Python :: 3.8',
49-
'Programming Language :: Python :: 3.9',
50-
'Programming Language :: Python :: 3.10',
51-
'Programming Language :: Python :: 3.11',
52-
'Programming Language :: Python :: 3.12',
53-
'Programming Language :: Python :: 3.13',
54-
'Programming Language :: Python :: Implementation :: PyPy',
55-
'Intended Audience :: Developers',
56-
'Intended Audience :: System Administrators',
57-
'License :: OSI Approved :: BSD License',
58-
'Operating System :: OS Independent',
59-
'Topic :: System :: Systems Administration',
60-
'Topic :: Utilities',
61-
'Environment :: Web Environment',
62-
]
54+
"Development Status :: 5 - Production/Stable",
55+
"Programming Language :: Python",
56+
"Programming Language :: Python :: 3",
57+
"Programming Language :: Python :: 3.9",
58+
"Programming Language :: Python :: 3.10",
59+
"Programming Language :: Python :: 3.11",
60+
"Programming Language :: Python :: 3.12",
61+
"Programming Language :: Python :: 3.13",
62+
"Programming Language :: Python :: Implementation :: PyPy",
63+
"Intended Audience :: Developers",
64+
"Intended Audience :: System Administrators",
65+
"License :: OSI Approved :: BSD License",
66+
"Operating System :: OS Independent",
67+
"Topic :: System :: Systems Administration",
68+
"Topic :: Utilities",
69+
"Environment :: Web Environment",
70+
],
6371
)

tox.ini

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
[tox]
2-
envlist = lint,py{38,39,310,311,312-dev},pypy3,manifest,coverage-report
2+
envlist = lint,py{39,310,311,312,313},pypy3,manifest,coverage-report
33

44
[gh-actions]
55
python =
6-
3.8: py38
76
3.9: py39
87
3.10: py310
9-
3.11: py311, lint, manifest
10-
3.12-dev: py312-dev
8+
3.11: py311
9+
3.12: py312
10+
3.13: py313, lint, manifest
1111
pypy-3.9: pypy3
1212

1313
[testenv]
1414
deps =
15-
pytest
16-
pytest-cov
17-
sh >= 2.0.2, <3
18-
click
19-
py{38,39,310,311,py312-dev,pypy3}: ipython
15+
pytest
16+
pytest-cov
17+
sh >= 2.0.2, <3
18+
click
19+
py{39,310,311,312,313,pypy3}: ipython
2020
commands = pytest --cov --cov-report=term-missing --cov-config setup.cfg {posargs}
2121
depends =
22-
py{38,39,310,311,312-dev},pypy3: coverage-clean
23-
coverage-report: py{38,39,310,311,312-dev},pypy3
22+
py{39,310,311,312,313},pypy3: coverage-clean
23+
coverage-report: py{39,310,311,312,313},pypy3
2424

2525
[testenv:lint]
2626
skip_install = true
2727
deps =
28-
flake8
29-
mypy
28+
flake8
29+
mypy
3030
commands =
31-
flake8 src tests
32-
mypy --python-version=3.12 src tests
33-
mypy --python-version=3.11 src tests
34-
mypy --python-version=3.10 src tests
35-
mypy --python-version=3.9 src tests
36-
mypy --python-version=3.8 src tests
31+
flake8 src tests
32+
mypy --python-version=3.13 src tests
33+
mypy --python-version=3.12 src tests
34+
mypy --python-version=3.11 src tests
35+
mypy --python-version=3.10 src tests
36+
mypy --python-version=3.9 src tests
3737

3838
[testenv:manifest]
3939
deps = check-manifest
@@ -49,4 +49,4 @@ commands = coverage erase
4949
deps = coverage
5050
skip_install = true
5151
commands =
52-
coverage report
52+
coverage report

0 commit comments

Comments
 (0)