mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-21 23:01:00 +00:00
Minor python environment changes (#723)
Substitutes python-memcached (which is installable out of the box on Windows) for pylibmc (which isn't), only on Windows Adds a git ignore for the common venv subdirectory for a working virtual environment when doing development
This commit is contained in:
parent
024b01a144
commit
d45f22c9c2
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -19,3 +19,4 @@ __pycache__/
|
||||||
api-test.*
|
api-test.*
|
||||||
notes.md
|
notes.md
|
||||||
notes.py
|
notes.py
|
||||||
|
venv/
|
||||||
|
|
|
@ -18,11 +18,12 @@ pillow~=9.3.0
|
||||||
psycopg~=3.1.8
|
psycopg~=3.1.8
|
||||||
pydantic~=1.10.2
|
pydantic~=1.10.2
|
||||||
pyld~=2.0.3
|
pyld~=2.0.3
|
||||||
pylibmc~=1.6.3
|
pylibmc~=1.6.3; sys_platform != 'win32'
|
||||||
pymemcache~=4.0.0
|
pymemcache~=4.0.0
|
||||||
pytest-asyncio~=0.20.3
|
pytest-asyncio~=0.20.3
|
||||||
python-dateutil~=2.8.2
|
python-dateutil~=2.8.2
|
||||||
python-dotenv~=0.21.0
|
python-dotenv~=0.21.0
|
||||||
|
python-memcached~=1.62; sys_platform == 'win32'
|
||||||
redis~=4.4.0
|
redis~=4.4.0
|
||||||
sentry-sdk~=1.11.0
|
sentry-sdk~=1.11.0
|
||||||
sphinx~=5.3.0
|
sphinx~=5.3.0
|
||||||
|
|
Loading…
Reference in a new issue