Skip to content

Commit

Permalink
Merge pull request #250 from jacebrowning/drop-3.7
Browse files Browse the repository at this point in the history
Drop support for Python 3.7
  • Loading branch information
jacebrowning committed Feb 21, 2021
2 parents 2c1c01b + ea9f074 commit 99904bd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 13 deletions.
4 changes: 1 addition & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ environment:
global:
RANDOM_SEED: 0
matrix:
- PYTHON_MAJOR: 3
PYTHON_MINOR: 7
- PYTHON_MAJOR: 3
PYTHON_MINOR: 8
# TODO: Enable this when Python 3.9 is available in the default images
Expand All @@ -23,7 +21,7 @@ install:
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Install system dependencies
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
- set PATH=%USERPROFILE%\.poetry\bin;%PATH%
- make doctor
# Install project dependencies
Expand Down
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ dist: xenial

language: python
python:
- 3.7
- 3.8
- 3.9

Expand All @@ -16,7 +15,7 @@ env:
- RANDOM_SEED=0

before_install:
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
- source $HOME/.poetry/env
- make doctor

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.0 (alpha)

- Added support for virtual drives on Windows. (@gunechristensen)
- Dropped support for Python 3.7.

# 2.3 (beta)

- Updated default arguments to `Source` model for improved library usage.
Expand Down
13 changes: 7 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "gitman"
version = "2.3b3"
version = "3.0a1"
description = "A language-agnostic dependency manager using Git."

license = "MIT"
Expand Down Expand Up @@ -30,7 +30,6 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development",
Expand Down

0 comments on commit 99904bd

Please sign in to comment.