Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
django-yarnpkg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Libraries
django-yarnpkg
Compare revisions
93af2839f12e4be247f405906ea1ec38e387ff33 to 97d947afb147991f08390edd08e28d3961ea0165
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
AlekSIS/libs/django-yarnpkg
Select target project
No results found
97d947afb147991f08390edd08e28d3961ea0165
Select Git revision
Branches
master
renovate/python-3.x
Tags
5.1.0
5.2.0
6.0.0
6.0.1
6.0.2
6.1.0
6.1.1
6.1.2
6.1.3
11 results
Swap
Target
AlekSIS/libs/django-yarnpkg
Select target project
AlekSIS/libs/django-yarnpkg
edward/django-yarnpkg
detiste-guest/django-yarnpkg
3 results
93af2839f12e4be247f405906ea1ec38e387ff33
Select Git revision
Branches
master
renovate/python-3.x
Tags
5.1.0
5.2.0
6.0.0
6.0.1
6.0.2
6.1.0
6.1.1
6.1.2
6.1.3
11 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
remove usage of six
· b2b59bef
Alexandre Detiste
authored
1 year ago
b2b59bef
Merge branch 'master' into 'master'
· 97d947af
Jonathan Weth
authored
1 year ago
remove usage of six See merge request
!9
97d947af
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
django_yarnpkg/context_processors.py
+0
-1
0 additions, 1 deletion
django_yarnpkg/context_processors.py
django_yarnpkg/tests/test_yarn.py
+1
-1
1 addition, 1 deletion
django_yarnpkg/tests/test_yarn.py
setup.py
+0
-1
0 additions, 1 deletion
setup.py
with
1 addition
and
3 deletions
django_yarnpkg/context_processors.py
View file @
97d947af
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
import
os.path
import
os.path
import
json
import
json
import
six
from
django.conf
import
settings
from
django.conf
import
settings
from
django.utils.datastructures
import
OrderedSet
from
django.utils.datastructures
import
OrderedSet
...
...
This diff is collapsed.
Click to expand it.
django_yarnpkg/tests/test_yarn.py
View file @
97d947af
from
django.core.management
import
call_command
from
django.core.management
import
call_command
from
django.conf
import
settings
from
django.conf
import
settings
from
django.test
import
TestCase
from
django.test
import
TestCase
from
six
import
StringIO
from
io
import
StringIO
from
mock
import
MagicMock
from
mock
import
MagicMock
from
..yarn
import
yarn_adapter
,
YarnAdapter
from
..yarn
import
yarn_adapter
,
YarnAdapter
from
..
import
conf
from
..
import
conf
...
...
This diff is collapsed.
Click to expand it.
setup.py
View file @
97d947af
...
@@ -23,7 +23,6 @@ setup(
...
@@ -23,7 +23,6 @@ setup(
zip_safe
=
True
,
zip_safe
=
True
,
install_requires
=
[
install_requires
=
[
'
django
'
,
'
django
'
,
'
six
'
,
],
],
entry_points
=
"""
entry_points
=
"""
# -*- Entry points: -*-
# -*- Entry points: -*-
...
...
This diff is collapsed.
Click to expand it.