Skip to content

Commit 2fd0c0e

Browse files
committed
updated .gitignore and python versions
1 parent ba0f148 commit 2fd0c0e

File tree

2 files changed

+75
-129
lines changed

2 files changed

+75
-129
lines changed

.gitignore

Lines changed: 74 additions & 128 deletions
Original file line numberDiff line numberDiff line change
@@ -1,143 +1,89 @@
1-
# Byte-compiled / optimized / DLL files
21
__pycache__/
3-
*.py[cod]
4-
*$py.class
5-
6-
# C extensions
7-
*.so
8-
9-
# Distribution / packaging
10-
.Python
11-
build/
12-
develop-eggs/
13-
dist/
14-
downloads/
15-
eggs/
16-
.eggs/
17-
lib/
18-
lib64/
19-
parts/
20-
sdist/
21-
var/
22-
wheels/
23-
share/python-wheels/
24-
*.egg-info/
25-
.installed.cfg
26-
*.egg
27-
MANIFEST
28-
29-
# PyInstaller
30-
# Usually these files are written by a python script from a template
31-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32-
*.manifest
33-
*.spec
34-
35-
# Installer logs
36-
pip-log.txt
37-
pip-delete-this-directory.txt
38-
39-
# Unit test / coverage reports
40-
htmlcov/
41-
.tox/
42-
.nox/
2+
__pypackages__/
3+
.cache
434
.coverage
445
.coverage.*
45-
.cache
46-
nosetests.xml
47-
coverage.xml
48-
*.cover
49-
*.py,cover
6+
.dmypy.json
7+
.DS_Store
8+
.eggs/
9+
.env
5010
.hypothesis/
11+
.idea/
12+
.installed.cfg
13+
.ipynb_checkpoints
14+
.mypy_cache/
15+
.nox/
16+
.pdm-build/
17+
.pdm-python
18+
.pdm.toml
19+
.pybuilder/
20+
.pyre/
5121
.pytest_cache/
52-
cover/
53-
54-
# Translations
22+
.Python
23+
.python-version
24+
.pytype/
25+
.ropeproject
26+
.scrapy
27+
.spyderproject
28+
.spyproject
29+
.tox/
30+
.venv
31+
.vscode
32+
.webassets-cache
33+
*.bak
34+
*.cover
35+
*.egg
36+
*.egg-info/
37+
*.log
38+
*.manifest
5539
*.mo
40+
*.orig
5641
*.pot
57-
58-
# Django stuff:
59-
*.log
60-
local_settings.py
42+
*.py,cover
43+
*.py[cod]
44+
*.sage.py
45+
*.so
46+
*.spec
6147
*.sqlite3
48+
**/.DS_Store
49+
*~
50+
*$py.class
51+
/site
52+
archive
53+
build/
54+
celerybeat-schedule
55+
celerybeat.pid
56+
cover/
57+
coverage.xml
58+
cython_debug/
6259
db.sqlite3-journal
63-
64-
# Flask stuff:
65-
instance/
66-
.webassets-cache
67-
68-
# Scrapy stuff:
69-
.scrapy
70-
71-
# Sphinx documentation
60+
develop-eggs/
61+
dist/
62+
dmypy.json
7263
docs/_build/
73-
74-
# PyBuilder
75-
.pybuilder/
76-
target/
77-
78-
# Jupyter Notebook
79-
.ipynb_checkpoints
80-
81-
# IPython
82-
profile_default/
83-
ipython_config.py
84-
85-
# package/env management
86-
.python-version
87-
.env
88-
.venv
64+
downloads/
65+
eggs/
8966
env/
90-
venv/
9167
ENV/
92-
*.bak
68+
htmlcov/
69+
instance/
70+
ipython_config.py
71+
lib/
72+
lib64/
73+
local_settings.py
74+
MANIFEST
75+
nosetests.xml
76+
parts/
77+
pdm.lock
78+
pip-delete-this-directory.txt
79+
pip-log.txt
9380
Pipfile.lock
9481
poetry.lock
95-
pdm.lock
96-
.pdm.toml
97-
.pdm-python
98-
.pdm-build/
82+
profile_default/
83+
sdist/
84+
share/python-wheels/
85+
target/
9986
uv.lock
100-
101-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
102-
__pypackages__/
103-
104-
# Celery stuff
105-
celerybeat-schedule
106-
celerybeat.pid
107-
108-
# SageMath parsed files
109-
*.sage.py
110-
111-
# Spyder project settings
112-
.spyderproject
113-
.spyproject
114-
115-
# Rope project settings
116-
.ropeproject
117-
118-
# mkdocs documentation
119-
/site
120-
121-
# mypy
122-
.mypy_cache/
123-
.dmypy.json
124-
dmypy.json
125-
126-
# Pyre type checker
127-
.pyre/
128-
129-
# pytype static type analyzer
130-
.pytype/
131-
132-
# Cython debug symbols
133-
cython_debug/
134-
135-
# IDEs
136-
.idea/
137-
.vscode
138-
139-
# misc
140-
*.orig
141-
archive
142-
*~
143-
**/.DS_Store
87+
var/
88+
venv/
89+
wheels/

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ license = { file = "LICENSE.txt" }
99
requires-python = ">=3.10"
1010
classifiers = [
1111
"Programming Language :: Python :: 3",
12-
"Programming Language :: Python :: 3.10",
1312
"Programming Language :: Python :: 3.11",
1413
"Programming Language :: Python :: 3.12",
14+
"Programming Language :: Python :: 3.13",
1515
"License :: OSI Approved :: MIT License",
1616
"Operating System :: OS Independent",
1717
]

0 commit comments

Comments
 (0)