aiordache
c90ba119f5
Fix tox failures
...
Signed-off-by: aiordache <anca.iordache@docker.com>
2020-08-11 17:24:37 +02:00
ulyssessouza
7009370bf2
Recover ./script/release/release.py
...
Signed-off-by: ulyssessouza <ulysses.souza@docker.com>
2020-08-11 16:48:23 +02:00
dependabot-preview[bot]
f2a43d755e
Bump virtualenv from 20.0.29 to 20.0.30 ( #7657 )
...
* Bump virtualenv from 20.0.29 to 20.0.30
Bumps [virtualenv](https://github.com/pypa/virtualenv ) from 20.0.29 to 20.0.30.
- [Release notes](https://github.com/pypa/virtualenv/releases )
- [Changelog](https://github.com/pypa/virtualenv/blob/master/docs/changelog.rst )
- [Commits](https://github.com/pypa/virtualenv/compare/20.0.29...20.0.30 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
* Bump virtualenv version in all files
Signed-off-by: aiordache <anca.iordache@docker.com>
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: aiordache <anca.iordache@docker.com>
Co-authored-by: Anca Iordache <aiordache@users.noreply.github.com>
2020-08-11 15:04:11 +02:00
alexrecuenco
4d3d9f64b9
Removed Python2 support
...
Closes : #6890
Some remarks,
- `# coding ... utf-8` statements are not needed
- isdigit on strings instead of a try-catch.
- Default opening mode is read, so we can do `open()` without the `'r'` everywhere
- Removed inheritinng from `object` class, it isn't necessary in python3.
- `super(ClassName, self)` can now be replaced with `super()`
- Use of itertools and `chain` on a couple places dealing with sets.
- Used the operator module instead of lambdas when warranted
`itemgetter(0)` instead of `lambda x: x[0]`
`attrgetter('name')` instead of `lambda x: x.name`
- `sorted` returns a list, so no need to use `list(sorted(...))`
- Removed `dict()` using dictionary comprehensions whenever possible
- Attempted to remove python3.2 support
Signed-off-by: alexrecuenco <alejandrogonzalezrecuenco@gmail.com>
2020-08-11 17:45:13 +07:00
aiordache
5a47b692c1
Bump virtualenv version to 20.0.29
...
Signed-off-by: aiordache <anca.iordache@docker.com>
2020-08-05 10:49:40 +02:00
Santiago M. Mola
6311511117
avoid using realpath in scripts
...
scripts/run uses realpath when COMPOSE_FILE is set. realpath is not available in
some systems (e.g. macOS), and readlink -f isn't either. Replaced with a more
portable approach.
Signed-off-by: Santiago M. Mola <santi@mola.io>
2020-07-15 18:44:00 +02:00
Santiago M. Mola
0ea51906cd
pass COMPOSE_PROJECT_NAME env var in container mode
...
Avoids the surprise of finding the project name set to the directory
name when COMPOSE_PROJECT_NAME is being used.
Signed-off-by: Santiago M. Mola <santi@mola.io>
2020-07-07 09:06:02 +02:00
Ulysses Souza
7728bf6c8b
[master] forward-port "Bump 1.26.1"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
(cherry picked from commit f216ddbf05
)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-07-02 12:57:46 +02:00
Ulysses Souza
854c14a5bc
Merge pull request #7031 from venthur/remove_python2
...
Removed Python2 support
2020-06-10 17:03:19 +02:00
Ulysses Souza
2caf573b89
Merge pull request #7506 from ulyssessouza/indirect-dependencies
...
Pin all indirect dependencies
2020-06-09 11:00:26 +02:00
Ulysses Souza
9f734f7c53
Pin all indirect dependencies
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-04 13:43:27 +02:00
Ulysses Souza
8e01f361bd
Update release docs
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 18:31:05 +02:00
Bastian Venthur
8ce743c8c1
Fixed new things that came after the PR
...
Signed-off-by: Bastian Venthur <bastian.venthur@flixbus.com>
2020-06-03 18:08:23 +02:00
Ulysses Souza
3d2a82ca83
"Bump 1.26.0"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 17:49:08 +02:00
Ulysses Souza
f2bb6ff473
"Bump 1.26.0-rc5"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 17:49:08 +02:00
Ulysses Souza
cad60dbc00
"Bump 1.26.0-rc4"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 17:48:33 +02:00
Ulysses Souza
9b8b8cb856
"Bump 1.26.0-rc3"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 17:48:33 +02:00
Ulysses Souza
55ca40693c
"Bump 1.26.0-rc1"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-06-03 17:46:25 +02:00
Bastian Venthur
e8424d5ae0
Removed Python2 support
...
Closes : #6890
Signed-off-by: Bastian Venthur <bastian.venthur@flixbus.com>
2020-06-03 17:37:47 +02:00
Ulysses Souza
836e2b7c4d
General bumps
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-04-27 17:34:36 +02:00
Ulysses Souza
23889a8f88
Bump OPENSSL to 1.1.1f
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-04-16 10:00:40 +02:00
Ulysses Souza
0ace76114b
Add conformity tests hack
...
- That can be used with:
./script/test/acceptance
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-03-10 15:41:28 +01:00
Ulysses Souza
b5c4f4fc0f
Add release validation and tagging script release.py
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-02-03 16:52:35 +01:00
Ulysses Souza
4bf623d53d
Merge pull request #7163 from ndeloof/changelog
...
Compute changelog by searching previous tag .. even from a tag
2020-01-23 19:01:19 +01:00
Ulysses Souza
ec0f8a8f7c
Merge pull request #7177 from docker/ndeloof-patch-1
...
Tag as `x.y.z` without `v` prefix
2020-01-23 18:59:52 +01:00
Ulysses Souza
8d5023e1ca
Enforce Python37 in the creation of virtualenv
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-01-23 18:43:36 +01:00
Christopher Crone
a259c48ae9
Bump Linux and Python
...
* Alpine 3.10 to 3.11
* Debian Stretch 20191118 to 20191224
* Python 3.7.5 to 3.7.6
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
2020-01-23 11:30:26 +01:00
Nicolas De loof
8ad480546f
Tag as `x.y.z` without `v` prefix
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
Close https://github.com/docker/compose/issues/7168
2020-01-22 13:55:24 +01:00
Nicolas De Loof
84dad1a0e6
Compute changelog by searching previous tag .. even from a tag
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2020-01-20 16:18:02 +01:00
Ulysses Souza
ebc56c5ade
Merge pull request #7133 from docker/jenkins
...
Automate release process
2020-01-20 15:23:59 +01:00
Ulysses Souza
387f5e4c96
Bump pyinstaller to 3.6
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-01-16 13:46:47 +01:00
Christopher Crone
a92a8eb508
Bump macOS dependencies
...
- Python 3.7.5
- OpenSSL 1.1.1d
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
2020-01-15 10:54:57 +01:00
Nicolas De Loof
7ca5973a71
run release on tag by Jenkinsfile
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2020-01-09 16:11:03 +01:00
Nicolas De Loof
1af3852277
Generate changelog
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2020-01-08 10:15:48 +01:00
Nicolas De Loof
c5c287db5c
We don't use FOSSA anymore
...
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2020-01-08 10:15:48 +01:00
Ulysses Souza
a82fef0722
"Bump 1.25.1"
...
Signed-off-by: Ulysses Souza <ulyssessouza@gmail.com>
2020-01-06 17:42:50 +01:00
Christopher Crone
b7a675b1c0
Upload macOS folder format to bintray
...
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
2019-11-29 18:28:47 +01:00
Christopher Crone
fedc8f71ad
Build single binary and folder format for macOS
...
Previously we were overwriting the single binary with the folder
format.
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
2019-11-29 18:27:39 +01:00
Christopher Crone
d6b5d324e2
Use Python3 for macOS build environment
...
With the deprecation of Python 2 coming soon, explicitly use
Python 3.
Signed-off-by: Christopher Crone <christopher.crone@docker.com>
2019-11-28 20:26:58 +01:00
Ulysses Souza
44edd65065
Merge pull request #7009 from glance-/shellcheck
...
Resolve shellcheck warnings in container-script
2019-11-28 13:37:50 +01:00
Ulysses Souza
517efbf386
Merge pull request #7005 from glance-/HOME-in-container
...
Pass in HOME env-var in container mode.
2019-11-22 17:02:07 +01:00
Anton Lundin
c8cfc590cc
Better userns detection in container-script
...
This uses formatting to have docker info just emit the information we're interested in.
Based-on-code-by: Sebastiaan van Stijn <github@gone.nl>
Signed-off-by: Anton Lundin <anton.lundin@umu.se>
Co-Authored-By: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
2019-11-22 16:24:09 +01:00
Ulysses Souza
332fa8bf62
Merge pull request #7010 from ndeloof/catalina
...
Build OSX binary as a directory
2019-11-22 15:26:09 +01:00
Nicolas De Loof
e13a7213f1
Build OSX binary as a directory
...
OSX Catalina otherwise do scan the temporary executable files created by the single-file packaging.
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2019-11-21 09:01:41 +01:00
Ulysses Souza
b42d4197ce
Add latest tag question on resume and start to tag on build
...
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
2019-11-18 22:46:12 +01:00
Ulysses Souza
a0592ce585
"Bump 1.25.0"
...
Signed-off-by: Ulysses Souza <ulysses.souza@docker.com>
2019-11-18 19:14:13 +01:00
Anton Lundin
aeddfd41d6
Resolve shellcheck warnings in container-script
...
This fixes a couple of small potential issues pointed out by shellcheck.
Signed-off-by: Anton Lundin <anton.lundin@umu.se>
2019-11-07 21:55:03 +01:00
Anton Lundin
b9a4581d60
Pass in HOME env-var in container mode.
...
To get ~/-paths to work as expected in contaier mode, env-var HOME must
be the same outside the container as inside the docker-compose
container, otherwise HOME inside the container points to /root which
might not be what the user expects.
Signed-off-by: Anton Lundin <anton.lundin@umu.se>
2019-11-06 13:05:58 +01:00
Jean-Christophe Sirot
37be2ad9cd
Remove set -x to make this script less verbose
...
Signed-off-by: Jean-Christophe Sirot <jean-christophe.sirot@docker.com>
2019-10-09 10:51:17 +02:00
Stefan Scherer
ce52f597a0
Enhance build script for different CPU architectures
...
Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
2019-10-09 09:11:29 +02:00