Skip to content

Commit

Permalink
#351 fix and close (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
akorosov committed Jul 18, 2018
1 parent 308dae3 commit bf3667d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Vagrantfile
Expand Up @@ -24,6 +24,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "provisioning/site.yml"
ansible.galaxy_role_file = 'provisioning/galaxy_requirements.yml'
ansible.galaxy_command = 'ansible-galaxy install --role-file=%{role_file} --roles-path=%{roles_path} --force -c'
end

end
1 change: 0 additions & 1 deletion provisioning/conda_env_requirements.yml
Expand Up @@ -3,7 +3,6 @@ channels:
- conda-forge
dependencies:
- python=3.6
- libnetcdf=4.4.1.1
- gdal
- numpy
- pillow
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -49,7 +49,7 @@
MINOR = 1
MICRO = 0
ISRELEASED = True
VERSION = '%d.%d.%ddev' % (MAJOR, MINOR, MICRO) # Remember to remove "dev" when releasing
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) # Remember to remove "dev" when releasing
REQS = [
"Pillow",
"pythesint",
Expand Down

0 comments on commit bf3667d

Please sign in to comment.