Skip to content

Commit d9fd76a

Browse files
Merge pull request #9 from baking-bad/aux/python312
2 parents bfb5fde + aa3c997 commit d9fd76a

File tree

6 files changed

+814
-902
lines changed

6 files changed

+814
-902
lines changed

.gitignore

Lines changed: 32 additions & 126 deletions
Original file line numberDiff line numberDiff line change
@@ -1,126 +1,32 @@
1-
# Byte-compiled / optimized / DLL files
2-
__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-
pip-wheel-metadata/
24-
share/python-wheels/
25-
*.egg-info/
26-
.installed.cfg
27-
*.egg
28-
MANIFEST
29-
30-
# PyInstaller
31-
# Usually these files are written by a python script from a template
32-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33-
*.manifest
34-
*.spec
35-
36-
# Installer logs
37-
pip-log.txt
38-
pip-delete-this-directory.txt
39-
40-
# Unit test / coverage reports
41-
htmlcov/
42-
.tox/
43-
.nox/
44-
.coverage
45-
.coverage.*
46-
.cache
47-
nosetests.xml
48-
coverage.xml
49-
*.cover
50-
.hypothesis/
51-
.pytest_cache/
52-
53-
# Translations
54-
*.mo
55-
*.pot
56-
57-
# Django stuff:
58-
*.log
59-
local_settings.py
60-
db.sqlite3
61-
62-
# Flask stuff:
63-
instance/
64-
.webassets-cache
65-
66-
# Scrapy stuff:
67-
.scrapy
68-
69-
# Sphinx documentation
70-
docs/_build/
71-
72-
# PyBuilder
73-
target/
74-
75-
# Jupyter Notebook
76-
.ipynb_checkpoints
77-
78-
# IPython
79-
profile_default/
80-
ipython_config.py
81-
82-
# pyenv
83-
.python-version
84-
85-
# celery beat schedule file
86-
celerybeat-schedule
87-
88-
# SageMath parsed files
89-
*.sage.py
90-
91-
# Environments
92-
.env
93-
.venv
94-
env/
95-
venv/
96-
ENV/
97-
env.bak/
98-
venv.bak/
99-
100-
# Spyder project settings
101-
.spyderproject
102-
.spyproject
103-
104-
# Rope project settings
105-
.ropeproject
106-
107-
# mkdocs documentation
108-
/site
109-
110-
# mypy
111-
.mypy_cache/
112-
.dmypy.json
113-
dmypy.json
114-
115-
# Pyre type checker
116-
.pyre/
117-
/.vs/slnx.sqlite-journal
118-
/.vs/slnx.sqlite
119-
.vscode/settings.json
120-
.vscode/launch.json
121-
# Containers code
122-
./test/containers/code
123-
#coverga
124-
coverage_html
125-
#venvwin
126-
venvwin
1+
# Ignore all
2+
*
3+
!*/
4+
5+
# Add metadata and build files
6+
!.gitignore
7+
!.dockerignore
8+
!**/Dockerfile
9+
!**/Makefile
10+
!**/pyproject.toml
11+
!**/requirements*
12+
!**/pdm.lock
13+
!**/README.md
14+
!**/.keep
15+
16+
# Add Python code
17+
!**/*.py
18+
**/.*_cache
19+
**/__pycache__
20+
21+
# Add configs and scripts (but not env!)
22+
!**/*.graphql
23+
!**/*.json
24+
!**/*.sql
25+
!**/*.yaml
26+
!**/*.yml
27+
!**/*.j2
28+
!**/*.env.default
29+
30+
# Docs
31+
!docs/**
32+
docs/_build

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic
66

77
## [Unreleased]
88

9+
### Added
10+
11+
- Python 3.12 support.
12+
913
### Other
1014

11-
- `websockets` library updated to 11.0.3.
15+
- `websockets` library updated to 12.0.
1216
- Use faster `orjson` library for JSON deserialization.
1317

1418
## [0.2.0] - 2023-04-07

0 commit comments

Comments
 (0)