Skip to content

Commit

Permalink
[doc] Does not work on Windows in CI but might work with Cygwin
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Sep 16, 2021
1 parent 1b73ed6 commit 48641d5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
9 changes: 0 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,6 @@ jobs:
with:
install: gcc make liblzma-devel libzstd-devel zlib-devel

- name: Print System Information (Windows)
if: matrix.os == 'windows-latest'
shell: msys2
run: |
pacman -v
- name: Install Dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -132,17 +126,14 @@ jobs:
python3 -m pip uninstall --yes "$module"
done
python3 -m pip install --upgrade git+https://github.com/mxmlnkn/indexed_bzip2.git@master#egginfo=indexed_bzip2
if: matrix.os != 'windows-latest'
- name: Test Installation From Tarball
if: matrix.os != 'windows-latest'
run: |
python3 setup.py sdist bdist_wheel
twine check dist/*
python3 -m pip install "$( find dist -name '*.tar.gz' | head -1 )[full]"
- name: Test Installation From Source
if: matrix.os == 'windows-latest'
run: |
python3 setup.py sdist bdist_wheel
twine check dist/*
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

# Version 0.9.0 built on 2021-08-xx
# Version 0.9.0 built on 2021-09-16

- Refactor the code and introduce a MountSource interface.
- Add support for zip and rar archives.
- Add support for zip and rar archives including password-encrypted ones.
- Improve recursive mounting. If supported by the decompression backend,
compressed archives inside compressed archives can be mounted recursively.
- Fixes for macOS and Windows.
Expand Down
2 changes: 0 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down

0 comments on commit 48641d5

Please sign in to comment.