summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--MANIFEST.in1
-rw-r--r--README.rst7
-rw-r--r--doc/release.md6
-rw-r--r--tests/unittest_nodes.py4
5 files changed, 5 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d13c384..89489542 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@ What's New in astroid 2.6.0?
============================
Release Date: TBA
+* Appveyor and travis are no longer used in the continuous integration
* Update enum brain to improve inference of .name and .value dynamic class
attributes
diff --git a/MANIFEST.in b/MANIFEST.in
index 44a85873..799a3f0b 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -2,7 +2,6 @@ prune .github
prune doc
prune tests
exclude .*
-exclude appveyor.yml
exclude ChangeLog
exclude pylintrc
exclude README.rst
diff --git a/README.rst b/README.rst
index 486c78b0..b0d29901 100644
--- a/README.rst
+++ b/README.rst
@@ -1,13 +1,6 @@
Astroid
=======
-.. image:: https://travis-ci.org/PyCQA/astroid.svg?branch=master
- :target: https://travis-ci.org/PyCQA/astroid
-
-.. image:: https://ci.appveyor.com/api/projects/status/co3u42kunguhbh6l/branch/master?svg=true
- :alt: AppVeyor Build Status
- :target: https://ci.appveyor.com/project/PCManticore/astroid
-
.. image:: https://coveralls.io/repos/github/PyCQA/astroid/badge.svg?branch=master
:target: https://coveralls.io/github/PyCQA/astroid?branch=master
diff --git a/doc/release.md b/doc/release.md
index 46ad3ac0..94ebb564 100644
--- a/doc/release.md
+++ b/doc/release.md
@@ -17,14 +17,12 @@ git --aliases=.copyrite_aliases . --jobs=8
# automatically
```
-4. Submit your changes in a merge request and make sure the tests are passing on
- Travis/GithubActions: https://travis-ci.org/PyCQA/astroid/
+4. Submit your changes in a merge request and make sure the tests are passing.
5. Do the actual release by tagging the master with `vX.Y.Z` (ie `v1.6.12` or `v3.0.0a0`
for example).
-Until the release is done via Travis or GitHub actions on tag, run the following
-commands:
+Until the release is done via GitHub actions on tag, run the following commands:
```bash
git clean -fdx && find . -name '*.pyc' -delete
diff --git a/tests/unittest_nodes.py b/tests/unittest_nodes.py
index 38ab497b..d3f7ea43 100644
--- a/tests/unittest_nodes.py
+++ b/tests/unittest_nodes.py
@@ -257,8 +257,8 @@ class D(metaclass=abc.ABCMeta):
ast = abuilder.string_build(code)
self.assertEqual(ast.as_string().strip(), code.strip())
- # This test is disabled on PyPy because we cannot get a proper release on TravisCI that has
- # proper support for f-strings (we need 7.2 at least)
+ # This test is disabled on PyPy because we cannot get a release that has proper
+ # support for f-strings (we need 7.2 at least)
@pytest.mark.skipif(
sys.version_info[:2] < (3, 6) or platform.python_implementation() == "PyPy",
reason="Needs f-string support.",