-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix marker duplication #59
Merged
Merged
Changes from 31 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
17fdda6
Add initial tests
techalchemy 4186a0c
Clean up options and add virtualenv module
techalchemy c431ae6
Add tests (clean is still failing)
techalchemy bf4fa23
Wheel installation into virtualenv works
techalchemy ac6929b
Update setup.cfg
techalchemy 194cd50
Implement working versions of clean and install inside virtualenvs
techalchemy 8ee990e
Fix cleaning working set and messaging
techalchemy b1a7bf7
Fix tests
techalchemy 2a40250
Update tox and add mork, installer and virtualenv dependencies
techalchemy afe8e51
Swap to mork implementation for testing
techalchemy 28bf2f0
Update CI configs
techalchemy 57bac36
Add deprecation warning ignores to test runners
techalchemy 06f1af8
Add project fixtures, venv support
techalchemy 7ed8fbe
Add clean, install and lock tests
techalchemy c5a516a
Add sync and remove tests
techalchemy d6e2aa4
Monkeypatch distlib metadata to work with version 2.1
techalchemy 246eccd
Update lockfile
techalchemy 1f48d03
Update pipfile and lockfile
techalchemy 4dc19fd
Fix packing
techalchemy b1f2e17
Fix package task
techalchemy c47b7a6
Add LRU cache for cacheable function calls
techalchemy 404b9e0
Drop markers from editable requirements
techalchemy 0ffc28e
Add PySpec object to handle comparison and consolidation
techalchemy 2345480
Cleanup
techalchemy 82d3c70
Fix virtualenv usage and Set inheritance
techalchemy 703c8c5
update lockfile?
techalchemy 85de00e
Finalize marker intersection logic
techalchemy 2c7f670
Clean up PySpec intersection methods
techalchemy 3c9a86c
Force upgrades
techalchemy d26f485
Add assertion for debugging travis
techalchemy 4d72b7a
Fix lru cache install
techalchemy 18e6501
Fix specifier math
techalchemy fc759b3
Fix mork invocations
techalchemy e622517
Merge branch 'master' into fix-marker-duplication
techalchemy 8024741
merge branch 'add-tests-frost'
bc0b1f4
merge conflicts
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,114 @@ | ||
.env | ||
.venv | ||
__pycache__ | ||
|
||
/build | ||
/dist | ||
/docs/_build | ||
/pack | ||
htmlcov/ | ||
.pytest_cache/ | ||
.vscode/ | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
# C extensions | ||
*.so | ||
|
||
*.egg-info | ||
# Distribution / packaging | ||
.Python | ||
develop-eggs/ | ||
downloads/ | ||
eggs/ | ||
.eggs/ | ||
sdist/ | ||
var/ | ||
wheels/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
MANIFEST | ||
|
||
*.py[co] | ||
# PyInstaller | ||
# Usually these files are written by a python script from a template | ||
# before PyInstaller builds the exe, so as to inject date/other infos into it. | ||
*.manifest | ||
*.spec | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.nox/ | ||
.coverage | ||
.coverage.* | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
*.cover | ||
.hypothesis/ | ||
.pytest_cache/ | ||
.vscode/ | ||
|
||
# Translations | ||
*.mo | ||
*.pot | ||
|
||
# Django stuff: | ||
*.log | ||
local_settings.py | ||
db.sqlite3 | ||
|
||
# Flask stuff: | ||
instance/ | ||
.webassets-cache | ||
|
||
# Scrapy stuff: | ||
.scrapy | ||
|
||
# Sphinx documentation | ||
docs/_build/ | ||
|
||
# PyBuilder | ||
target/ | ||
|
||
# Jupyter Notebook | ||
.ipynb_checkpoints | ||
|
||
# IPython | ||
profile_default/ | ||
ipython_config.py | ||
|
||
# pyenv | ||
.python-version | ||
|
||
# celery beat schedule file | ||
celerybeat-schedule | ||
|
||
# SageMath parsed files | ||
*.sage.py | ||
|
||
# Environments | ||
.env | ||
.venv | ||
env/ | ||
venv/ | ||
ENV/ | ||
env.bak/ | ||
venv.bak/ | ||
|
||
# Spyder project settings | ||
.spyderproject | ||
.spyproject | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
# mkdocs documentation | ||
/site | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
dmypy.json | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does every PR has this. Maybe commit this first and base all PRs after it?