Skip to content

Commit

Permalink
[Issue #347] updated and simplified the requirements.txt, updated the…
Browse files Browse the repository at this point in the history
… dependencies in the setup.py file, removed obsolete files
  • Loading branch information
ria-htkw committed Mar 30, 2024
1 parent 0ba4ce7 commit 16dcc33
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 42 deletions.
16 changes: 6 additions & 10 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
version: '2.0'
version: '3.8'

services:
db:
image: postgres
koalixcrm:
build: .
environment:
- DJANGO_SETTINGS_MODULE=projectsettings.settings.docker_development_settings
- JAVA_HOME=/usr/bin/jdk1.8.0_181/jre
web:
image: ghcr.io/koalixswitzerland/koalixcrm-dev-container:main
ports:
- "8000:8000"
depends_on:
- db
volumes:
- .:/usr/src/app
- ./data:/usr/src/app/data
4 changes: 0 additions & 4 deletions entrypoint.prod.sh

This file was deleted.

4 changes: 0 additions & 4 deletions entrypoint.sh

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-r requirements/heroku_requirements.txt
-r requirements/prod_requirements.txt
5 changes: 0 additions & 5 deletions requirements/heroku_requirements.txt

This file was deleted.

File renamed without changes.
7 changes: 0 additions & 7 deletions requirements/test_requirements.txt

This file was deleted.

22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
author_email='[email protected]',
license='BSD',
packages=find_packages(exclude=["projectsettings", "documentation"]),
install_requires=['Django==3.0.7',
'django-filebrowser==3.13.1',
'lxml==4.4.2',
install_requires=['Django==3.2.20',
'django-filebrowser==3.14.3',
'lxml==5.1.0',
'olefile==0.46',
'Pillow==7.1.2',
'psycopg2-binary==2.8.4',
'pytz==2019.3',
'django-grappelli==2.14.2',
'djangorestframework==3.11.0',
'djangorestframework-xml==1.4.0',
'pytz==2022.4',
'django-grappelli==2.15.7',
'djangorestframework==3.14.0',
'djangorestframework-xml==2.0.0',
'markdown==3.1.1',
'django-filter==2.2.0',
'pandas==0.25.2',
'matplotlib==3.2.1',
'django-filter==23.5',
'pandas==1.5.3',
'matplotlib==3.7.5'
],
zip_safe=False,
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.8', ],
'Programming Language :: Python :: 3.10', ],
python_requires='~=3.5',
include_package_data=True,
)

0 comments on commit 16dcc33

Please sign in to comment.