Skip to content

Fix CI & cleanup files #558

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

Merged
merged 1 commit into from
Jul 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Prepare tox
run: |
V=${{ matrix.python-version }}
echo TOX_PYTHON=py"$(echo $V | tr -d.)" >>"$GITHUB_ENV"
echo TOX_PYTHON=py"$(echo $V | tr -d '.')" >>"$GITHUB_ENV"

- run: >
uvx --with=tox-uv
Expand Down
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Asset management application for Python web development - use it to
merge and compress your JavaScript and CSS files.

Documentation: |travis|
Documentation: |ci|
https://webassets.readthedocs.io/

Since releases aren't exactly happening on a regular schedule, you are
Expand All @@ -17,10 +17,10 @@ Development:
For development, to run all the tests, you need to have at least Java 7
installed (required for example to run the `Google closure`_ filter).

1. Install Python requirements (preferable in a virtual env)::
1. Install Python requirements with uv::

$ pip install -r requirements-dev.pip
$ pip install -r requirements-dev-2.x.pip
$ uv venv
$ uv pip install -r uv.lock

2. Install other requirements::

Expand All @@ -34,5 +34,5 @@ __ http://github.com/miracle2k/webassets/tarball/master#egg=webassets-dev

.. _`Google closure`: https://github.com/google/closure-compiler/wiki/FAQ#the-compiler-crashes-with-unsupportedclassversionerror-or-unsupported-majorminor-version-510

.. |travis| image:: https://secure.travis-ci.org/miracle2k/webassets.png?branch=master
:target: http://travis-ci.org/miracle2k/webassets
.. |ci| image:: https://github.com/miracle2k/webassets/actions/workflows/ci.yml/badge.svg
:target: https://github.com/miracle2k/webassets/actions/workflows/ci.yml
8 changes: 0 additions & 8 deletions requirements-dev-2.x.pip

This file was deleted.

1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ package = wheel
wheel_build_env = .pkg
description = run the tests with pytest
extras = slimit, ply, sass, rcssmin, closure, jinja2, cssutils
uv_python_preference = managed
deps =
pytest
commands =
Expand Down