Skip to content

Commit

Permalink
Updating pythondata-software-compiler_rt to 0.0.post6198
Browse files Browse the repository at this point in the history
Updated data to v0.0-6140-g81fb4f00c based on 81fb4f0 from https://git.llvm.org/git/compiler-rt.git/.
> commit 81fb4f0
> Author: Chris Bieneman <beanz@apple.com>
> Date:   Fri Nov 6 23:19:29 2015 +0000
>
>     [CMake] Need to filter ${arch}/*.c builtins as well as ${arch}/*.S builtins.
>
>     This was broken in r248542 when I refactored this to support builtins where ${arch} didn't match the directory prefix (i.e. armv7s).
>
>     git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@252365 91177308-0d34-0410-b5e6-96231b3b80d8
>

Updated using 0.0.post58 from https://github.com/litex-hub/litex-data-auto
  • Loading branch information
timvideos-robot authored and Travis CI User committed Jun 10, 2020
1 parent cde2f93 commit 43f8f82
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,5 @@ deploy:
provider: pypi
username: __token__
distributions: sdist bdist_wheel
server: https://test.pypi.org/legacy/
skip_existing: true
edge: true # opt in to dpl v2
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ACTIVATE=[[ -e venv/bin/activate ]] && source venv/bin/activate;
SHELL := /bin/bash

clean:
rm -rf build dist litex_data_*
rm -rf build dist pythondata_*.egg-info

.PHONY: clean

Expand Down Expand Up @@ -32,7 +32,7 @@ upload-test: build
.PHONY: upload-test

upload: build
${ACTIVATE} twine upload
${ACTIVATE} twine upload --verbose dist/*

.PHONY: upload

Expand Down
12 changes: 6 additions & 6 deletions pythondata_software_compiler_rt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
src = "https://git.llvm.org/git/compiler-rt.git/"

# Module version
version_str = "0.0.post6193"
version_tuple = (0, 0, 6193)
version_str = "0.0.post6198"
version_tuple = (0, 0, 6198)
try:
from packaging.version import Version as V
pversion = V("0.0.post6193")
pversion = V("0.0.post6198")
except ImportError:
pass

Expand Down Expand Up @@ -36,11 +36,11 @@
"""

# Tool version info
tool_version_str = "0.0.post53"
tool_version_tuple = (0, 0, 53)
tool_version_str = "0.0.post58"
tool_version_tuple = (0, 0, 58)
try:
from packaging.version import Version as V
ptool_version = V("0.0.post53")
ptool_version = V("0.0.post58")
except ImportError:
pass

Expand Down

0 comments on commit 43f8f82

Please sign in to comment.